mirror of
https://gerrit.wikimedia.org/r/mediawiki/skins/Vector.git
synced 2024-11-11 16:59:09 +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
25 lines
535 B
Plaintext
25 lines
535 B
Plaintext
html.ve-activated {
|
|
// Temporarily disable TOC in edit mode until TOC works with both visual and source editors
|
|
// T294950
|
|
.vector-toc {
|
|
display: none;
|
|
}
|
|
|
|
// T367822
|
|
&.skin-theme-clientpref-night {
|
|
.ve-ce-branchNode-blockSlug,
|
|
body p.ve-ce-branchNode-newSlug {
|
|
background-color: rgba( 241, 247, 251, 0.1 );
|
|
}
|
|
}
|
|
|
|
@media ( prefers-color-scheme: dark ) {
|
|
&.skin-theme-clientpref-os {
|
|
.ve-ce-branchNode-blockSlug,
|
|
body p.ve-ce-branchNode-newSlug {
|
|
background-color: rgba( 241, 247, 251, 0.1 );
|
|
}
|
|
}
|
|
}
|
|
}
|