diff options
author | adeshkp <adeshkp@users.noreply.github.com> | 2018-05-26 10:55:52 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-05-26 10:55:52 +0000 |
commit | e62cb0cb2308c2671faceea5783725b08a2638f7 (patch) | |
tree | 4b05e1e5bdfb5fedccd62270da7f4973588ff0c7 /application/palemoon/themes/osx | |
parent | 8f354e52d09d1bf2fadfbbfc141d4f32241599a4 (diff) | |
download | UXP-e62cb0cb2308c2671faceea5783725b08a2638f7.tar UXP-e62cb0cb2308c2671faceea5783725b08a2638f7.tar.gz UXP-e62cb0cb2308c2671faceea5783725b08a2638f7.tar.lz UXP-e62cb0cb2308c2671faceea5783725b08a2638f7.tar.xz UXP-e62cb0cb2308c2671faceea5783725b08a2638f7.zip |
Pale Moon - Fix white tab text for active tab on Mac
Diffstat (limited to 'application/palemoon/themes/osx')
-rw-r--r-- | application/palemoon/themes/osx/browser.css | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/application/palemoon/themes/osx/browser.css b/application/palemoon/themes/osx/browser.css index 6307c5f58..10f521843 100644 --- a/application/palemoon/themes/osx/browser.css +++ b/application/palemoon/themes/osx/browser.css @@ -1459,14 +1459,14 @@ richlistitem[type~="action"][actiontype="switchtab"][selected="true"] > .ac-url- linear-gradient(-moz-dialog, -moz-dialog); } -.tabbrowser-tab:-moz-lwtheme { - color: inherit; - /* 0.99 opacity rquired to force an active layer, see bug #1028369 */ - opacity: 0.99; +.tabbrowser-tab[visuallyselected=true]:not(:-moz-lwtheme) { + /* overriding tabbox.css */ + color: inherit; } -.tabbrowser-tab:-moz-lwtheme:not([selected="true"]) { - opacity: 0.9; +.tabbrowser-tab[visuallyselected=true] { + /* overriding tabbox.css */ + text-shadow: inherit; } /* Remove highlight fuzz on dark themes */ |