2019-08-15 17:40:13 +00:00
|
|
|
/*
|
|
|
|
* Citizen - Recent Changes Styles
|
|
|
|
* https://starcitizen.tools
|
|
|
|
*/
|
|
|
|
|
2019-12-29 09:47:56 +00:00
|
|
|
@import '../../../resources/variables.less';
|
2019-08-15 17:40:13 +00:00
|
|
|
|
|
|
|
/*!
|
|
|
|
* Styling for Special:Watchlist and Special:RecentChanges when preference 'usenewrc'
|
|
|
|
* a.k.a. Enhanced Recent Changes is enabled.
|
|
|
|
*/
|
2023-07-06 23:41:59 +00:00
|
|
|
.mw-enhanced-rc {
|
|
|
|
table& {
|
|
|
|
padding: var( --space-sm ) 0;
|
|
|
|
margin: 0 !important;
|
|
|
|
font-size: 0.875rem;
|
2023-07-07 20:36:27 +00:00
|
|
|
transition: var( --transition-hover );
|
|
|
|
transition-property: background;
|
2019-08-15 17:40:13 +00:00
|
|
|
|
2023-07-06 23:41:59 +00:00
|
|
|
&:hover {
|
|
|
|
background-color: var( --background-color-quiet--hover );
|
|
|
|
}
|
|
|
|
}
|
2019-12-26 10:21:50 +00:00
|
|
|
|
2023-07-06 23:41:59 +00:00
|
|
|
td& {
|
|
|
|
font-family: var( --font-family-monospace );
|
|
|
|
}
|
|
|
|
|
|
|
|
&-time {
|
|
|
|
font-family: var( --font-family-monospace );
|
2019-12-26 10:21:50 +00:00
|
|
|
}
|
2019-08-15 17:40:13 +00:00
|
|
|
|
2023-07-06 23:41:59 +00:00
|
|
|
&-nested {
|
|
|
|
display: block;
|
|
|
|
margin-top: var( --space-xxs );
|
2019-08-15 17:40:13 +00:00
|
|
|
|
2023-07-06 23:41:59 +00:00
|
|
|
.mw-tag-markers {
|
|
|
|
margin: var( --space-xxs );
|
|
|
|
}
|
2019-12-26 10:21:50 +00:00
|
|
|
}
|
2019-08-15 17:40:13 +00:00
|
|
|
}
|