mirror of
https://github.com/StarCitizenTools/mediawiki-skins-Citizen.git
synced 2024-11-17 11:24:40 +00:00
86 lines
1.3 KiB
Plaintext
86 lines
1.3 KiB
Plaintext
/*
|
|
* Citizen - Recent Changes Styles
|
|
* https://starcitizen.tools
|
|
*/
|
|
|
|
@import '../../../resources/variables.less';
|
|
|
|
/*!
|
|
* Styling for Special:Watchlist and Special:RecentChanges
|
|
*/
|
|
|
|
#siteSub {
|
|
display: none !important;
|
|
}
|
|
|
|
.rcoptions {
|
|
margin: @content-margin-top * 2 0;
|
|
padding: 0;
|
|
border: 0;
|
|
|
|
legend {
|
|
margin-bottom: @margin-side / 2;
|
|
padding: @margin-side / 2 0;
|
|
width: 100%;
|
|
border-bottom: 1px solid @base-80;
|
|
font-size: @content-small-text-size;
|
|
}
|
|
|
|
// Needed additional parent to override
|
|
.mw-changeslist-legend {
|
|
border-color: @base-80;
|
|
border-radius: @border-radius-small;
|
|
}
|
|
}
|
|
|
|
.mw-changeslist {
|
|
h4 {
|
|
border-bottom: 1px solid @base-80;
|
|
color: @base-30 !important;
|
|
padding: @margin-side / 2 0 !important;
|
|
font-size: @content-caption-size !important;
|
|
font-family: @fonts !important;
|
|
}
|
|
|
|
.comment {
|
|
color: @base-30;
|
|
}
|
|
|
|
.mw-tag-markers {
|
|
.mw-tag-marker {
|
|
color: @base-30;
|
|
}
|
|
}
|
|
}
|
|
|
|
@media ( prefers-color-scheme: dark ) {
|
|
.rcoptions {
|
|
color: @dark-text-90;
|
|
|
|
legend {
|
|
border-color: @dark-bg-20;
|
|
}
|
|
|
|
.mw-changeslist-legend {
|
|
border-color: @dark-bg-20;
|
|
}
|
|
}
|
|
|
|
.mw-changeslist {
|
|
h4 {
|
|
color: @dark-text-80 !important;
|
|
border-color: @dark-bg-20;
|
|
}
|
|
|
|
.comment {
|
|
color: @dark-text-80;
|
|
}
|
|
|
|
.mw-tag-markers {
|
|
.mw-tag-marker {
|
|
color: @dark-text-80;
|
|
}
|
|
}
|
|
}
|
|
}
|