mirror of
https://gerrit.wikimedia.org/r/mediawiki/skins/Vector.git
synced 2024-11-25 08:05:51 +00:00
0daa4da3c4
The media query for the CSS portion of this feature should not include the `screen` portion because that's included in the top-level import in skin.less. Bug: T326364 Change-Id: I1ab0e321dde908982834c92ee428b512218bbe3d
49 lines
1.4 KiB
Plaintext
49 lines
1.4 KiB
Plaintext
@import '../../common/variables.less';
|
|
|
|
.vector-feature-page-tools-enabled .vector-pinnable-element {
|
|
& > *:not( :last-child ) {
|
|
// Apply bottom border to every children of pinnable elements except the last
|
|
border-bottom: @border-width-base @border-style-base @colorGray14;
|
|
}
|
|
|
|
.vector-menu-heading {
|
|
.mixin-vector-dropdown-menu-item();
|
|
.mixin-vector-menu-heading();
|
|
}
|
|
|
|
.mw-list-item a {
|
|
// Mirror styles from Dropdown.less
|
|
.mixin-vector-dropdown-menu-item();
|
|
color: @color-link;
|
|
}
|
|
}
|
|
|
|
// TODO: merge this into the selector above after page tools is enabled everywhere
|
|
.vector-unpinned-container .vector-pinnable-element {
|
|
padding: 4px 0;
|
|
}
|
|
|
|
// TODO: merge this into the selector above after page tools is enabled everywhere
|
|
.vector-pinned-container .vector-pinnable-element {
|
|
// Make the heading border line up with the edge of the text
|
|
// (Whereas in a dropdown, the border lines up with the edge of the dropdown container).
|
|
.vector-pinnable-header,
|
|
.vector-menu-heading,
|
|
.mw-list-item a {
|
|
padding-left: 0;
|
|
padding-right: 0;
|
|
}
|
|
}
|
|
|
|
/**
|
|
* At lower resolutions, we want to hide the pinned containers since these
|
|
* elements collapse (become unpinned) at this resolution via PinnableElement.js.
|
|
* Although this is handled in JS, this rule prevents the pinned menu from
|
|
* appearing on pageload, at low resolutions, before the JS kicks in.
|
|
*/
|
|
@media ( max-width: @max-width-tablet ) {
|
|
.vector-pinned-container {
|
|
display: none;
|
|
}
|
|
}
|