mirror of
https://github.com/StarCitizenTools/mediawiki-skins-Citizen.git
synced 2024-11-18 03:41:50 +00:00
50 lines
767 B
Plaintext
50 lines
767 B
Plaintext
|
/*
|
||
|
* Citizen - SMW jQuery AtWho
|
||
|
* https://starcitizen.tools
|
||
|
*/
|
||
|
|
||
|
@import '../../../resources/variables.less';
|
||
|
|
||
|
@media ( prefers-color-scheme: dark ) {
|
||
|
.atwho-view {
|
||
|
background: @dark-bg-0;
|
||
|
color: #6f8092;
|
||
|
border: 1px solid @dark-bg-20;
|
||
|
box-shadow: 0 0 5px rgba( 0, 0, 0, 0.1 );
|
||
|
}
|
||
|
|
||
|
.atwho-view .atwho-header {
|
||
|
border-bottom: solid 1px @dark-bg-20;
|
||
|
color: #6f8092;
|
||
|
}
|
||
|
|
||
|
.atwho-view .atwho-header .small {
|
||
|
color: #6f8092;
|
||
|
}
|
||
|
|
||
|
.atwho-view .cur {
|
||
|
background: @dark-bg-20;
|
||
|
color: #6f8092;
|
||
|
}
|
||
|
|
||
|
.atwho-view .cur small {
|
||
|
color: @dark-text-100;
|
||
|
}
|
||
|
|
||
|
.atwho-view strong {
|
||
|
color: #39f;
|
||
|
}
|
||
|
|
||
|
.atwho-view .cur strong {
|
||
|
color: #39f;
|
||
|
}
|
||
|
|
||
|
.atwho-view ul li {
|
||
|
border-bottom: 1px solid @dark-bg-20;
|
||
|
}
|
||
|
|
||
|
.atwho-view small {
|
||
|
color: @dark-text-70;
|
||
|
}
|
||
|
}
|