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 | 766c426dc40bc13e6822a70b42c3963321580355 (patch) | |
tree | dcfde28e30f11686561ce85edc9f38911000c9b4 /application | |
parent | d7f80db603325a2be18612c6c756f3b22fd94464 (diff) | |
download | aura-central-766c426dc40bc13e6822a70b42c3963321580355.tar.gz |
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')
-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; } |