mirror of
https://github.com/StarCitizenTools/mediawiki-skins-Citizen.git
synced 2024-11-16 02:54:06 +00:00
56 lines
912 B
Plaintext
56 lines
912 B
Plaintext
|
/*
|
||
|
* Citizen - Flow UI
|
||
|
* https://starcitizen.tools
|
||
|
*/
|
||
|
|
||
|
@import '../../../resources/variables.less';
|
||
|
|
||
|
@media ( prefers-color-scheme: dark ) {
|
||
|
/**
|
||
|
mw.flow.ui.NavigationWidget.less
|
||
|
*/
|
||
|
.flow-ui-navigationWidget {
|
||
|
border-bottom: 1px solid @dark-bg-30;
|
||
|
|
||
|
&-affixed {
|
||
|
background: @dark-bg-0;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
mw.flow.ui.EditorWidget.less
|
||
|
*/
|
||
|
.flow-ui-editorWidget > .flow-ui-editorWidget-editor {
|
||
|
background-color: @dark-bg-10;
|
||
|
border-color: @dark-bg-30;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
mw.flow.ui.TopicMenuSelectWidget.less
|
||
|
*/
|
||
|
.flow-ui-topicMenuSelectWidget {
|
||
|
&-locked,
|
||
|
&-locked:hover {
|
||
|
color: @dark-text-70;
|
||
|
}
|
||
|
border-color: @dark-bg-30;
|
||
|
|
||
|
&::-webkit-scrollbar-thumb {
|
||
|
border: 2px solid @dark-bg-0;
|
||
|
}
|
||
|
|
||
|
&::-webkit-scrollbar-track {
|
||
|
background-color: @dark-bg-0;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
mw.flow.ui.TopicTitleWidget.less
|
||
|
*/
|
||
|
.flow-ui-topicTitleWidget {
|
||
|
&-termsLabel {
|
||
|
color: @dark-text-80;
|
||
|
}
|
||
|
}
|
||
|
}
|