diff options
author | SpockFan02 <aidanboyle@comcast.net> | 2018-07-03 18:20:07 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-07-03 18:20:07 +0000 |
commit | e8120c7c8046773ee2b1c8d3cfcffca9819ac7d3 (patch) | |
tree | dcfde28e30f11686561ce85edc9f38911000c9b4 /application/palemoon/themes/osx | |
parent | b7dc3016ec14a772ec4b1c64aff37b4d4bd08c71 (diff) | |
download | UXP-e8120c7c8046773ee2b1c8d3cfcffca9819ac7d3.tar UXP-e8120c7c8046773ee2b1c8d3cfcffca9819ac7d3.tar.gz UXP-e8120c7c8046773ee2b1c8d3cfcffca9819ac7d3.tar.lz UXP-e8120c7c8046773ee2b1c8d3cfcffca9819ac7d3.tar.xz UXP-e8120c7c8046773ee2b1c8d3cfcffca9819ac7d3.zip |
Don't hide caption buttons with a lw theme, either
Follow-up to #585. I removed this from the PR, but it's actually needed, otherwise the caption buttons are hidden with a lightweight theme!
Diffstat (limited to 'application/palemoon/themes/osx')
-rw-r--r-- | application/palemoon/themes/osx/browser.css | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/application/palemoon/themes/osx/browser.css b/application/palemoon/themes/osx/browser.css index b35d38bc0..fe4cdbf11 100644 --- a/application/palemoon/themes/osx/browser.css +++ b/application/palemoon/themes/osx/browser.css @@ -127,7 +127,7 @@ } /* ensure extra titlebar doesn't appear on normal (e.g. non-privacy) windows */ -#main-window:not([privatebrowsingmode=temporary]) > #titlebar > #titlebar-content > #titlebar-buttonbox-container, +#main-window:not([privatebrowsingmode=temporary]):not(-moz-lwtheme) > #titlebar > #titlebar-content > #titlebar-buttonbox-container, #main-window:not([drawintitlebar=true]):not(:-moz-lwtheme) > #titlebar { display: none; } |