Pierre-Louis Bonicoli
085a2af441
Fonctionne avec les pages wiki au format Markdown et HTML. Corrige #6377.
33 lines
849 B
CSS
33 lines
849 B
CSS
/* 42px: height of the chapril banner */
|
|
|
|
.repository .diff-detail-box.sticky {
|
|
top: 42px; /* default value (0) + 42px */
|
|
}
|
|
|
|
.ui.attached.header.diff-file-header.sticky-2nd-row {
|
|
top: 88px; /* default value (46px) + 42px */
|
|
}
|
|
|
|
@media (min-width: 768px) and (max-width: 991px) {
|
|
.ui.attached.header.diff-file-header.sticky-2nd-row {
|
|
top: 119px; /* default value (77px) + 42px */
|
|
}
|
|
}
|
|
|
|
@media (max-width: 767px) {
|
|
.ui.attached.header.diff-file-header.sticky-2nd-row {
|
|
top: 119px; /* default value (77px) + 42px */
|
|
}
|
|
}
|
|
|
|
/* #6377 wiki : fix internal links/anchors (in Markdown or HTML pages) */
|
|
.page-content.repository.wiki h1,
|
|
.page-content.repository.wiki h2,
|
|
.page-content.repository.wiki h3,
|
|
.page-content.repository.wiki h4,
|
|
.page-content.repository.wiki h5,
|
|
.page-content.repository.wiki h6 {
|
|
padding-top: 42px;
|
|
margin-top: -42px;
|
|
}
|