mirror of
https://github.com/StarCitizenTools/mediawiki-skins-Citizen.git
synced 2024-11-29 00:31:09 +00:00
60999eb1d9
Codex tokens are a better implementation and this should ensure consistency across the MW ecosystem. We have to keep a copy for now as they are introduced in 1.41. Related: #735
46 lines
937 B
Plaintext
46 lines
937 B
Plaintext
/*
|
|
* Citizen
|
|
*
|
|
* SkinStyles for Special:RecentChanges and Watchlist
|
|
* Module: mediawiki.special.changeslist.legend
|
|
* Version: 1.39.0
|
|
*
|
|
* Date: 2023-05-29
|
|
*/
|
|
|
|
@import '../../../resources/variables.less';
|
|
@import '../../../resources/mixins.less';
|
|
|
|
// Need additional parent to override
|
|
.mw-changeslist-legend {
|
|
position: relatve;
|
|
z-index: 2 !important; // so it is not covered by the date header
|
|
padding: var( --space-sm );
|
|
font-size: 0.8125rem;
|
|
background-color: var( --color-surface-2 );
|
|
border-color: var( --border-color-base );
|
|
border-radius: var( --border-radius--small );
|
|
|
|
// Citizen label styles
|
|
strong {
|
|
font-weight: var( --font-weight-normal );
|
|
color: var( --color-base--subtle );
|
|
letter-spacing: 0.05em;
|
|
}
|
|
|
|
dl,
|
|
ul {
|
|
margin-top: var( --space-xs );
|
|
}
|
|
|
|
ul {
|
|
margin-bottom: 0;
|
|
margin-left: var( --space-sm );
|
|
}
|
|
|
|
@media ( max-width: @max-width-breakpoint-tablet ) {
|
|
float: none;
|
|
margin: 0;
|
|
}
|
|
}
|