mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/DiscussionTools
synced 2024-11-23 16:06:53 +00:00
Fixes background of talk page highlights in dark mode
Bug: T368086 Change-Id: I6ca92afeba448f953d1ef5f54d7f1e966c017b48
This commit is contained in:
parent
4a2a1670de
commit
6896c8c879
|
@ -132,6 +132,16 @@ h1, h2, h3, h4, h5, h6 {
|
|||
// Support: Safari
|
||||
// Safari doesn't blend this overlay with the text unless GPU rendering is forced.
|
||||
transform: translateZ( 0 );
|
||||
|
||||
html.skin-theme-clientpref-night & {
|
||||
mix-blend-mode: lighten;
|
||||
}
|
||||
|
||||
@media ( prefers-color-scheme: dark ) {
|
||||
html.skin-theme-clientpref-os & {
|
||||
mix-blend-mode: lighten;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.ext-discussiontools-init-highlight-fadein {
|
||||
|
@ -145,12 +155,21 @@ h1, h2, h3, h4, h5, h6 {
|
|||
|
||||
.ext-discussiontools-init-publishedcomment {
|
||||
background-color: #ffe29e;
|
||||
|
||||
html.skin-theme-clientpref-night & {
|
||||
background-color: @background-color-success-subtle;
|
||||
}
|
||||
|
||||
@media ( prefers-color-scheme: dark ) {
|
||||
html.skin-theme-clientpref-os & {
|
||||
background-color: @background-color-success-subtle;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.ext-discussiontools-init-targetcomment {
|
||||
// Same color as the :target selector for references (from Cite).
|
||||
// Not sure if that's a good idea, but it should be different from -publishedcomment.
|
||||
background-color: #eaf3ff;
|
||||
// T368086
|
||||
background-color: @background-color-progressive-subtle;
|
||||
}
|
||||
|
||||
// Topic subscriptions (both kinds)
|
||||
|
|
Loading…
Reference in a new issue