diff options
author | Moonchild <mcwerewolf@gmail.com> | 2018-05-06 20:44:37 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-05-06 20:44:37 +0200 |
commit | 61394bf4ff79650ee4b3f3951331c8a8775de6e3 (patch) | |
tree | 85111dd8e0b0d22377dc0f3eb18a672055c9dd11 /application/palemoon/base/content/browser.css | |
parent | 1fbd4d95796ff084e84e4b9e32d1c23aa2672825 (diff) | |
parent | 79f8a278d95be21ce6f0999a304da5bdd9924dca (diff) | |
download | UXP-61394bf4ff79650ee4b3f3951331c8a8775de6e3.tar UXP-61394bf4ff79650ee4b3f3951331c8a8775de6e3.tar.gz UXP-61394bf4ff79650ee4b3f3951331c8a8775de6e3.tar.lz UXP-61394bf4ff79650ee4b3f3951331c8a8775de6e3.tar.xz UXP-61394bf4ff79650ee4b3f3951331c8a8775de6e3.zip |
Merge pull request #334 from JustOff/PR_fullscreen_warning
[PALEMOON] Replace the fullscreen permission dialog with a warning and update the permission management
Diffstat (limited to 'application/palemoon/base/content/browser.css')
-rw-r--r-- | application/palemoon/base/content/browser.css | 12 |
1 files changed, 2 insertions, 10 deletions
diff --git a/application/palemoon/base/content/browser.css b/application/palemoon/base/content/browser.css index 6fd2c5ce1..a2970aefc 100644 --- a/application/palemoon/base/content/browser.css +++ b/application/palemoon/base/content/browser.css @@ -504,6 +504,7 @@ window[chromehidden~="toolbar"] toolbar:not(.toolbar-primary):not(#nav-bar):not( width: 100%; height: 100%; z-index: 2147483647 !important; + pointer-events: none; } #full-screen-warning-container[fade-warning-out] { @@ -512,22 +513,13 @@ window[chromehidden~="toolbar"] toolbar:not(.toolbar-primary):not(#nav-bar):not( opacity: 0.0; } -/* When the modal fullscreen approval UI is showing, don't allow interaction - with the page, but when we're just showing the warning upon entering - fullscreen on an already approved page, do allow interaction with the page. - */ -#full-screen-warning-container:not([obscure-browser]) { - pointer-events: none; -} - #full-screen-warning-message { /* We must specify a max-width, otherwise word-wrap:break-word doesn't work in descendant <description> and <label> elements. Bug 630864. */ max-width: 800px; } -#full-screen-domain-text, -#full-screen-remember-decision > .checkbox-label-box > .checkbox-label { +#full-screen-domain-text { word-wrap: break-word; /* We must specify a min-width, otherwise word-wrap:break-word doesn't work. Bug 630864. */ min-width: 1px; |