mirror of
https://gerrit.wikimedia.org/r/mediawiki/skins/Vector.git
synced 2024-11-13 17:57:06 +00:00
2d281db7b1
This reverts commit b3ca12e628
.
Reason for revert: Icons are appearing black on black in dark mode
in origin/wmf/1.43.0-wmf.18.
Change-Id: Ifdf3970c77b66e5a7835ca44eb45deec2b44eb43
34 lines
746 B
Plaintext
34 lines
746 B
Plaintext
@import 'mediawiki.skin.variables.less';
|
|
|
|
.dark-mode-image-styles() {
|
|
/* Desktop legacy HTML */
|
|
.mw-parser-output,
|
|
/* Parsoid HTML (mobile) */
|
|
section .mw-heading ~ div,
|
|
/* Parsoid HTML (desktop) and mobile legacy HTML */
|
|
section,
|
|
/* e.g. https://en.wikipedia.org/wiki/Pullback_(category_theory)#Universal_property */
|
|
dd,
|
|
/* For targeting p span.mw-default-size */
|
|
p {
|
|
> span.mw-default-size,
|
|
> figure[ typeof='mw:File' ],
|
|
> figure[ typeof='mw:File/Thumb' ],
|
|
> figure[ typeof='mw:File/Frameless' ] {
|
|
img {
|
|
background-color: #c8ccd1;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
html.skin-theme-clientpref-night {
|
|
.dark-mode-image-styles();
|
|
}
|
|
|
|
@media ( prefers-color-scheme: dark ) {
|
|
html.skin-theme-clientpref-os {
|
|
.dark-mode-image-styles();
|
|
}
|
|
}
|