2021-02-02 10:04:37 +00:00
|
|
|
/**
|
|
|
|
* 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';
|
2021-05-18 18:27:33 +00:00
|
|
|
@import './components/SearchBox.less';
|
2021-02-02 10:04:37 +00:00
|
|
|
@import './components/Sidebar.less';
|
2021-05-26 23:23:53 +00:00
|
|
|
@import './components/UserLinks.less';
|
2021-09-16 21:39:06 +00:00
|
|
|
|
|
|
|
// 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;
|
|
|
|
}
|
|
|
|
}
|
2021-02-02 10:04:37 +00:00
|
|
|
}
|
2021-07-29 20:51:44 +00:00
|
|
|
|
|
|
|
@media print {
|
|
|
|
@import './layouts/print.less';
|
|
|
|
}
|