mirror of
https://github.com/StarCitizenTools/mediawiki-skins-Citizen.git
synced 2024-11-24 22:35:45 +00:00
0fdc7c4ad7
Also fix various inconsistencies with quiet buttons
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-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-progressive-subtle );
|
|
}
|
|
|
|
.mw-datatable td {
|
|
background-color: var( --color-surface-0 );
|
|
}
|
|
|
|
.mw-datatable tr:hover td {
|
|
background-color: var( --background-color-progressive-subtle );
|
|
}
|
|
}
|