mirror of
https://github.com/StarCitizenTools/mediawiki-skins-Citizen.git
synced 2024-11-15 18:40:05 +00:00
32 lines
602 B
Plaintext
32 lines
602 B
Plaintext
/*
|
|
* Citizen - Recent Changes Styles
|
|
* https://starcitizen.tools
|
|
*/
|
|
|
|
@import '../../../resources/variables.less';
|
|
|
|
/*!
|
|
* Styling for Special:Watchlist and Special:RecentChanges when preference 'usenewrc'
|
|
* a.k.a. Enhanced Recent Changes is enabled.
|
|
*/
|
|
|
|
table.mw-enhanced-rc {
|
|
padding: var( --space-sm ) 0;
|
|
margin: 0 !important;
|
|
font-size: 0.875rem;
|
|
transition: @transition-background;
|
|
|
|
&:hover {
|
|
background-color: var( --background-color-quiet--hover );
|
|
}
|
|
}
|
|
|
|
.mw-enhanced-rc-nested {
|
|
display: block;
|
|
margin-top: var( --space-xxs );
|
|
|
|
.mw-tag-markers {
|
|
margin: var( --space-xxs );
|
|
}
|
|
}
|