diff options
author | FranklinDM <mrmineshafter17@gmail.com> | 2018-11-17 10:55:10 +0800 |
---|---|---|
committer | FranklinDM <mrmineshafter17@gmail.com> | 2018-11-17 10:55:10 +0800 |
commit | a6b250b47730cc4751cfc5ca9e96a4b74e4d6572 (patch) | |
tree | bb7eec5d3d6f60f6b3146d068887f7edd81bc102 /application/palemoon/base/content/tabbrowser.css | |
parent | 66cc7d91a44fd6789b80cd61ee7b84c63d402122 (diff) | |
download | UXP-a6b250b47730cc4751cfc5ca9e96a4b74e4d6572.tar UXP-a6b250b47730cc4751cfc5ca9e96a4b74e4d6572.tar.gz UXP-a6b250b47730cc4751cfc5ca9e96a4b74e4d6572.tar.lz UXP-a6b250b47730cc4751cfc5ca9e96a4b74e4d6572.tar.xz UXP-a6b250b47730cc4751cfc5ca9e96a4b74e4d6572.zip |
Issue #638 - Part 8: Add overlay sound icon for pinned tabs
- This also moves some styles to tabbrowser.css
Diffstat (limited to 'application/palemoon/base/content/tabbrowser.css')
-rw-r--r-- | application/palemoon/base/content/tabbrowser.css | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/application/palemoon/base/content/tabbrowser.css b/application/palemoon/base/content/tabbrowser.css index 94d6dbb2e..43536b27a 100644 --- a/application/palemoon/base/content/tabbrowser.css +++ b/application/palemoon/base/content/tabbrowser.css @@ -45,10 +45,19 @@ tabpanels { } .tab-throbber:not([busy]), -.tab-throbber[busy] + .tab-icon-image { +.tab-throbber[busy] + .tab-icon-image, +.tab-icon-sound:not([soundplaying]):not([muted]):not([blocked]), +.tab-icon-sound[pinned], +.tab-icon-overlay { display: none; } +.tab-icon-overlay[soundplaying][pinned], +.tab-icon-overlay[muted][pinned], +.tab-icon-overlay[blocked][pinned] { + display: -moz-box; +} + .closing-tabs-spacer { pointer-events: none; } |