mirror of
https://github.com/StarCitizenTools/mediawiki-skins-Citizen.git
synced 2024-11-15 02:24:04 +00:00
29 lines
451 B
Plaintext
29 lines
451 B
Plaintext
/*
|
|
* Citizen - Diff Styles
|
|
* https://starcitizen.tools
|
|
*/
|
|
|
|
@import '../../resources/variables.less';
|
|
|
|
.skin-citizen-dark {
|
|
.diff-context {
|
|
border-color: @dark-bg-20;
|
|
background: @dark-bg-10;
|
|
color: @dark-text-90;
|
|
}
|
|
|
|
/* TODO */
|
|
.diff-addedline .diffchange {
|
|
background: #d8ecff;
|
|
}
|
|
|
|
.diff-deletedline .diffchange {
|
|
background: #feeec8;
|
|
}
|
|
|
|
.mw-diff-movedpara-left:after,
|
|
.mw-diff-movedpara-right:after {
|
|
color: @dark-text-90;
|
|
}
|
|
}
|