mirror of
https://gerrit.wikimedia.org/r/mediawiki/skins/Vector.git
synced 2024-11-24 07:43:47 +00:00
51cce2d0d4
* It sticks to the header on scroll * It hides when the sticky header hides Bug: T296680 Change-Id: I5a4e2ba42e172ea55fbdac8f35ec895f6b2756cd
17 lines
316 B
Plaintext
17 lines
316 B
Plaintext
// Sticky header ULS behavior.
|
|
|
|
.uls-dialog-sticky {
|
|
.uls-menu {
|
|
position: fixed;
|
|
/* stylelint-disable-next-line declaration-no-important */
|
|
top: 60px !important;
|
|
}
|
|
|
|
&.uls-dialog-sticky-hide {
|
|
.uls-menu {
|
|
/* stylelint-disable-next-line declaration-no-important */
|
|
display: none !important;
|
|
}
|
|
}
|
|
}
|