diff options
author | Moonchild <mcwerewolf@wolfbeast.com> | 2019-01-28 01:14:54 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-01-28 01:14:54 +0100 |
commit | 2d43b6eee49aafc948be8fae471dda74de7ffc25 (patch) | |
tree | b87f4c9d3fd45d2ce2d25d9b9d3c5cce6d57aeb6 /application/palemoon/themes/windows/browser.css | |
parent | 322d0be583c1dbc9d1dc1fe4212aed9c82bbbf7a (diff) | |
parent | b39e0b131c7ab714bdeddc655298489a96e51ae2 (diff) | |
download | UXP-2d43b6eee49aafc948be8fae471dda74de7ffc25.tar UXP-2d43b6eee49aafc948be8fae471dda74de7ffc25.tar.gz UXP-2d43b6eee49aafc948be8fae471dda74de7ffc25.tar.lz UXP-2d43b6eee49aafc948be8fae471dda74de7ffc25.tar.xz UXP-2d43b6eee49aafc948be8fae471dda74de7ffc25.zip |
Merge pull request #945 from FranklinDM/audioindicator-lwtheme-fix
Only use white audio indicator when using a lightweight theme
Diffstat (limited to 'application/palemoon/themes/windows/browser.css')
-rw-r--r-- | application/palemoon/themes/windows/browser.css | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/application/palemoon/themes/windows/browser.css b/application/palemoon/themes/windows/browser.css index c261fe083..56a8318da 100644 --- a/application/palemoon/themes/windows/browser.css +++ b/application/palemoon/themes/windows/browser.css @@ -2050,9 +2050,9 @@ richlistitem[type~="action"][actiontype="switchtab"] > .ac-url-box > .ac-action- list-style-image: url("chrome://browser/skin/tabbrowser/tab-audio.svg#tab-audio-blocked"); } -#TabsToolbar[brighttext] .tab-icon-sound[soundplaying], -#TabsToolbar[brighttext] .tab-icon-sound[blocked], -#TabsToolbar[brighttext] .tab-icon-sound[muted] { +#TabsToolbar:-moz-lwtheme-brighttext .tab-icon-sound[soundplaying], +#TabsToolbar:-moz-lwtheme-brighttext .tab-icon-sound[blocked], +#TabsToolbar:-moz-lwtheme-brighttext .tab-icon-sound[muted] { filter: invert(1); } @@ -2096,17 +2096,17 @@ richlistitem[type~="action"][actiontype="switchtab"] > .ac-url-box > .ac-action- list-style-image: url("chrome://browser/skin/tabbrowser/tab-audio-small.svg#tab-audio-blocked"); } -#TabsToolbar[brighttext] .tab-icon-overlay[soundplaying]:not([selected]):not(:hover), +#TabsToolbar:-moz-lwtheme-brighttext .tab-icon-overlay[soundplaying]:not([selected]):not(:hover), .tab-icon-overlay[soundplaying][selected]:-moz-lwtheme-brighttext:not(:hover) { list-style-image: url("chrome://browser/skin/tabbrowser/tab-audio-small.svg#tab-audio-white"); } -#TabsToolbar[brighttext] .tab-icon-overlay[muted]:not([crashed]):not([selected]):not(:hover), +#TabsToolbar:-moz-lwtheme-brighttext .tab-icon-overlay[muted]:not([crashed]):not([selected]):not(:hover), .tab-icon-overlay[muted][selected]:-moz-lwtheme-brighttext:not(:hover) { list-style-image: url("chrome://browser/skin/tabbrowser/tab-audio-small.svg#tab-audio-white-muted"); } -#TabsToolbar[brighttext] .tab-icon-overlay[blocked]:not([crashed]):not([selected]):not(:hover), +#TabsToolbar:-moz-lwtheme-brighttext .tab-icon-overlay[blocked]:not([crashed]):not([selected]):not(:hover), .tab-icon-overlay[blocked][selected]:-moz-lwtheme-brighttext:not(:hover) { list-style-image: url("chrome://browser/skin/tabbrowser/tab-audio-small.svg#tab-audio-white-blocked"); } |