mirror of
https://github.com/StarCitizenTools/mediawiki-skins-Citizen.git
synced 2024-11-24 22:35:45 +00:00
852fd86013
Check commit and GitHub actions for more details
44 lines
740 B
Plaintext
44 lines
740 B
Plaintext
/*
|
|
* Citizen - Page History Styles
|
|
* https://starcitizen.tools
|
|
*/
|
|
|
|
@import '../../../resources/variables.less';
|
|
|
|
#mw-history-compare {
|
|
margin: var( --space-md ) 0;
|
|
}
|
|
|
|
.mw-history-compareselectedversions {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
margin: var( --space-md ) 0;
|
|
font-size: var( --font-size-small );
|
|
}
|
|
|
|
#pagehistory {
|
|
margin: 0;
|
|
list-style: none;
|
|
|
|
li {
|
|
&.selected {
|
|
color: var( --color-base--emphasized );
|
|
outline-color: var( --border-color-base );
|
|
|
|
&.before {
|
|
background-color: var( --background-color-success-subtle );
|
|
}
|
|
|
|
&.after {
|
|
background-color: var( --background-color-destructive-subtle );
|
|
}
|
|
|
|
a {
|
|
color: var( -- );
|
|
}
|
|
}
|
|
}
|
|
}
|