mirror of
https://github.com/StarCitizenTools/mediawiki-skins-Citizen.git
synced 2024-11-15 10:38:19 +00:00
42 lines
631 B
Plaintext
42 lines
631 B
Plaintext
/*
|
|
* Citizen - SMW Table Styles
|
|
* https://starcitizen.tools
|
|
*/
|
|
|
|
@import '../../../resources/variables.less';
|
|
|
|
.content table.broadtable,
|
|
.smw-ask-result table.broadtable {
|
|
display: table;
|
|
}
|
|
|
|
@media ( prefers-color-scheme: dark ) {
|
|
.smw-table-header {
|
|
background-color: @dark-bg-20;
|
|
}
|
|
|
|
.smw-table-cell,
|
|
.smw-table-head {
|
|
border: 1px solid @dark-bg-50;
|
|
}
|
|
|
|
.smw-table-header {
|
|
background-color: @dark-bg-20;
|
|
}
|
|
|
|
.smw-table-footer {
|
|
background-color: @dark-bg-20;
|
|
}
|
|
|
|
/**
|
|
Should probably be -50
|
|
*/
|
|
.smw-table-sort-asc:after {
|
|
color: @dark-text-60;
|
|
}
|
|
|
|
.smw-table-sort-desc:after {
|
|
color: @dark-text-60;
|
|
}
|
|
}
|