mirror of
https://github.com/StarCitizenTools/mediawiki-skins-Citizen.git
synced 2024-12-12 14:35:35 +00:00
52 lines
983 B
Plaintext
52 lines
983 B
Plaintext
/*
|
|
* Citizen - Recent Changes Styles
|
|
* https://starcitizen.tools
|
|
*/
|
|
|
|
/*!
|
|
* Styling for Special:Watchlist and Special:RecentChanges when preference 'usenewrc'
|
|
* a.k.a. Enhanced Recent Changes is enabled.
|
|
*/
|
|
.mw-enhanced-rc {
|
|
/*
|
|
* Allow the change to scroll if it overflowed the container
|
|
* That happends a lot with page name without whitespace in narrow viewport
|
|
*/
|
|
table& {
|
|
display: block;
|
|
overflow-x: auto;
|
|
|
|
tr.mw-enhanced-rc {
|
|
td.mw-enhanced-rc,
|
|
td.mw-enhanced-rc-nested {
|
|
display: block;
|
|
margin-top: var( --space-xxs );
|
|
}
|
|
}
|
|
}
|
|
|
|
td& {
|
|
font-family: var( --font-family-monospace );
|
|
}
|
|
|
|
&-time {
|
|
font-family: var( --font-family-monospace );
|
|
}
|
|
|
|
&-nested {
|
|
.mw-tag-markers {
|
|
margin: var( --space-xxs );
|
|
}
|
|
}
|
|
}
|
|
|
|
/* Fix collapsible button alignment */
|
|
.mw-enhancedchanges-arrow-space {
|
|
float: none !important;
|
|
width: 1rem;
|
|
height: 1rem;
|
|
padding-top: 0;
|
|
vertical-align: text-bottom;
|
|
background-position: left center !important;
|
|
}
|