mirror of
https://gerrit.wikimedia.org/r/mediawiki/skins/Vector.git
synced 2024-12-04 20:18:57 +00:00
f83cca3cc5
Merges all of the styles in the Zebra module into the default styles. - skins.vector.zebra.styles ResourceLoader module is removed. - FIXME's related to Zebra styles are removed. - Top-level "&" that were used for scoping to feature-flag are removed. - `$wgVectorZebraDesign` feature flag is removed. Bug: T347712 Change-Id: I0177541ae87a5d070d5317629ca38de93613d620
41 lines
1 KiB
Plaintext
41 lines
1 KiB
Plaintext
// Ensure there is only 1 main menu landmark at anytime
|
|
&.vector-feature-main-menu-pinned-enabled .vector-header-start .vector-main-menu-landmark,
|
|
&.vector-feature-main-menu-pinned-disabled .vector-main-menu-container .vector-main-menu-landmark {
|
|
display: none;
|
|
}
|
|
|
|
.vector-main-menu {
|
|
|
|
// Hide #p-navigation label
|
|
#p-navigation .vector-menu-heading {
|
|
display: none;
|
|
}
|
|
|
|
// Match styles of .mw-list-item a in PinnableElement.less
|
|
.vector-main-menu-action-opt-out a,
|
|
.vector-main-menu-action-lang-alert .vector-main-menu-action-content {
|
|
.mixin-vector-dropdown-menu-item();
|
|
}
|
|
|
|
.vector-main-menu-action-opt-out a {
|
|
font-weight: bold;
|
|
}
|
|
|
|
.vector-main-menu-action-lang-alert .vector-main-menu-action-content {
|
|
padding-top: 0;
|
|
}
|
|
|
|
// Hide the sidebar alert if there are no languages and JavaScript is disabled (T326185)
|
|
.vector-main-menu-action-lang-alert.vector-main-menu-action-lang-alert-empty {
|
|
.client-nojs& {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
.vector-language-sidebar-alert {
|
|
// Override default .mw-message-box styles
|
|
padding: 8px;
|
|
margin: 0;
|
|
}
|
|
}
|