mirror of
https://github.com/StarCitizenTools/mediawiki-skins-Citizen.git
synced 2024-11-15 02:24:04 +00:00
40 lines
686 B
Plaintext
40 lines
686 B
Plaintext
/*
|
|
* Citizen - Legacy shared styles
|
|
* https://starcitizen.tools
|
|
*/
|
|
|
|
@import '../../resources/variables.less';
|
|
|
|
.skin-theme-clientpref-night {
|
|
.catlinks li {
|
|
border-left: 1px solid @dark-bg-50;
|
|
}
|
|
|
|
.autocomment,
|
|
.autocomment a,
|
|
.autocomment a:visited {
|
|
color: var( --color-base--subtle );
|
|
}
|
|
|
|
.mw-datatable {
|
|
border: 1px solid @dark-bg-50;
|
|
}
|
|
|
|
.mw-datatable td,
|
|
.mw-datatable th {
|
|
border: 1px solid @dark-bg-50;
|
|
}
|
|
|
|
.mw-datatable th {
|
|
background-color: var( --background-color-primary--active );
|
|
}
|
|
|
|
.mw-datatable td {
|
|
background-color: var( --color-surface-0 );
|
|
}
|
|
|
|
.mw-datatable tr:hover td {
|
|
background-color: var( --background-color-primary--active );
|
|
}
|
|
}
|