mirror of
https://gerrit.wikimedia.org/r/mediawiki/skins/Vector.git
synced 2024-11-28 09:30:17 +00:00
c5cfd4dce8
Removes gradients from tabs (i.e. article toolbar) in new Vector, moving the existing MenuTabs.less component into the skins.vector.styles.legacy module and creating a new MenuTabs.less component for modern Vector. Bug: T309398 Change-Id: I5d807f09bfbbceaded756daa78dbb023efcc91dc
38 lines
951 B
Plaintext
38 lines
951 B
Plaintext
/**
|
|
* Vector legacy stylesheets
|
|
* See '../common/common.less' for common screen and print Vector stylesheets.
|
|
*/
|
|
|
|
@media screen {
|
|
// Layouts
|
|
@import './layouts/screen.less';
|
|
|
|
// Legacy specific components
|
|
@import './components/MenuDropdown.less';
|
|
@import './components/MenuTabs.less';
|
|
@import './components/SearchBox.less';
|
|
@import './components/Sidebar.less';
|
|
@import './components/UserLinks.less';
|
|
|
|
// Overrides
|
|
// Since these override declarations in ResourceLoaderSkinModule they require
|
|
// the `skin-vector-legacy` class for greater specificity. See T288739.
|
|
// FIXME: This can be considered for removal in future or can be repurposed as a skin
|
|
// variable when modern and legacy Vector use different skin keys.
|
|
.skin-vector-legacy {
|
|
a.new {
|
|
color: #ba0000;
|
|
}
|
|
|
|
a.new:visited,
|
|
.vector-menu-tabs .new a,
|
|
.vector-menu-tabs .new a:visited {
|
|
color: #a55858;
|
|
}
|
|
}
|
|
}
|
|
|
|
@media print {
|
|
@import './layouts/print.less';
|
|
}
|