mirror of
https://github.com/StarCitizenTools/mediawiki-skins-Citizen.git
synced 2024-11-24 22:35:45 +00:00
e69160de2f
Also update Math color --------- Co-authored-by: alistair3149 <alistair3149@users.noreply.github.com>
68 lines
1,021 B
Plaintext
68 lines
1,021 B
Plaintext
/*
|
|
* Citizen
|
|
*
|
|
* SkinStyles for Extension:Math
|
|
* Module: ext.math.styles
|
|
* Version: REL1_35 b7a7939
|
|
*
|
|
* Date: 2023-06-04
|
|
*/
|
|
|
|
@import '../../../resources/mixins.less';
|
|
|
|
.skin-citizen-light {
|
|
.mwe-math-fallback-image-display,
|
|
.mwe-math-fallback-image-inline {
|
|
.recolor( @color-base );
|
|
}
|
|
|
|
h1,
|
|
h2,
|
|
h3,
|
|
h4,
|
|
h5,
|
|
h6,
|
|
dt {
|
|
.mwe-math-fallback-image-display,
|
|
.mwe-math-fallback-image-inline {
|
|
.recolor( @color-base--emphasized );
|
|
}
|
|
}
|
|
|
|
blockquote,
|
|
th {
|
|
.mwe-math-fallback-image-display,
|
|
.mwe-math-fallback-image-inline {
|
|
.recolor( @color-base--subtle );
|
|
}
|
|
}
|
|
}
|
|
|
|
.skin-citizen-dark {
|
|
.mwe-math-fallback-image-display,
|
|
.mwe-math-fallback-image-inline {
|
|
.recolor( @dark-color-base );
|
|
}
|
|
|
|
h1,
|
|
h2,
|
|
h3,
|
|
h4,
|
|
h5,
|
|
h6,
|
|
dt {
|
|
.mwe-math-fallback-image-display,
|
|
.mwe-math-fallback-image-inline {
|
|
.recolor( @dark-color-base--emphasized );
|
|
}
|
|
}
|
|
|
|
blockquote,
|
|
th {
|
|
.mwe-math-fallback-image-display,
|
|
.mwe-math-fallback-image-inline {
|
|
.recolor( @dark-color-base--subtle );
|
|
}
|
|
}
|
|
}
|