Merge "Update background of insert paragraph slug"

This commit is contained in:
jenkins-bot 2024-06-26 20:50:10 +00:00 committed by Gerrit Code Review
commit 6cf18143b0

View file

@ -1,7 +1,24 @@
.ve-activated { html.ve-activated {
// Temporarily disable TOC in edit mode until TOC works with both visual and source editors // Temporarily disable TOC in edit mode until TOC works with both visual and source editors
// T294950 // T294950
.vector-toc { .vector-toc {
display: none; 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 );
}
}
}
} }