mirror of
https://gerrit.wikimedia.org/r/mediawiki/skins/Vector.git
synced 2024-11-23 23:33:54 +00:00
8868b9cc3b
Currently the background of the insert paragraph slug on desktop doesn't have sufficient contrast with the text. Follow the pattern of what we did in If03069339261e380dc49defedccb01830d162483, and update it to use a higher transparency Bug: T367822 Change-Id: Ia8f26da068f9b9f33f64523eee6c7f4bf64efaf7
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 );
|
|
}
|
|
}
|
|
}
|
|
}
|