2023-11-21 17:01:04 +00:00
|
|
|
// Ensure there is only 1 client prefs landmark at anytime
|
2024-04-12 03:27:34 +00:00
|
|
|
.vector-feature-appearance-pinned-clientpref-1 .vector-user-links .vector-appearance-landmark,
|
|
|
|
.vector-feature-appearance-pinned-clientpref-0 .vector-column-end .vector-appearance-landmark {
|
2023-11-21 17:01:04 +00:00
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2024-04-12 03:27:34 +00:00
|
|
|
#vector-appearance-dropdown {
|
2023-11-21 17:01:04 +00:00
|
|
|
.vector-dropdown-content {
|
|
|
|
.mixin-vector-dropdown-content-flip();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-04-11 04:14:29 +00:00
|
|
|
.exclusion-notice {
|
|
|
|
color: @color-disabled;
|
|
|
|
}
|
|
|
|
|
2023-11-21 17:01:04 +00:00
|
|
|
/* If JS is disabled the menu should not render at all */
|
2024-04-12 03:27:34 +00:00
|
|
|
.client-nojs .vector-appearance-landmark {
|
2023-11-21 17:01:04 +00:00
|
|
|
display: none;
|
|
|
|
}
|
2024-05-22 16:58:32 +00:00
|
|
|
|
|
|
|
// By default, limited width client pref should be hidden unless the breakpoint below is reached.
|
|
|
|
#skin-client-prefs-vector-feature-limited-width {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Note on certain pages the control will have no effect e.g. Special:RecentChanges
|
|
|
|
// Defining this at 1400px is a product decision so do not change it
|
|
|
|
// (more context at https://phabricator.wikimedia.org/T326887#8540889)
|
|
|
|
@media ( min-width: 1400px ) {
|
|
|
|
#skin-client-prefs-vector-feature-limited-width {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
}
|