diff options
author | Moonchild <mcwerewolf@gmail.com> | 2018-04-24 19:36:41 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-04-24 19:36:41 +0200 |
commit | 444b1a26abe8521eefe2bf657497f43b523cfca3 (patch) | |
tree | d671970886ba345029561d00d10bf682dff17cad | |
parent | 1b0a03a2e1916efd5c4f76efbe24b5917aa0d4c1 (diff) | |
parent | 70c2ad9f470c8860f11342ada8fb6958f98c6917 (diff) | |
download | UXP-444b1a26abe8521eefe2bf657497f43b523cfca3.tar UXP-444b1a26abe8521eefe2bf657497f43b523cfca3.tar.gz UXP-444b1a26abe8521eefe2bf657497f43b523cfca3.tar.lz UXP-444b1a26abe8521eefe2bf657497f43b523cfca3.tar.xz UXP-444b1a26abe8521eefe2bf657497f43b523cfca3.zip |
Merge pull request #260 from janekptacijarabaci/plugins_placeholder_css_1
palemoon#583 and #1071: Fix: Plugin placeholder image/text (ask to activate) missing + overlay
-rw-r--r-- | toolkit/pluginproblem/content/pluginProblemBinding.css | 5 | ||||
-rw-r--r-- | toolkit/pluginproblem/content/pluginProblemContent.css | 6 | ||||
-rw-r--r-- | toolkit/pluginproblem/jar.mn | 4 |
3 files changed, 13 insertions, 2 deletions
diff --git a/toolkit/pluginproblem/content/pluginProblemBinding.css b/toolkit/pluginproblem/content/pluginProblemBinding.css index 48506de34..a545e3eba 100644 --- a/toolkit/pluginproblem/content/pluginProblemBinding.css +++ b/toolkit/pluginproblem/content/pluginProblemBinding.css @@ -19,6 +19,11 @@ object:-moz-handler-crashed, object:-moz-handler-clicktoplay, object:-moz-handler-vulnerable-updatable, object:-moz-handler-vulnerable-no-update { +%ifdef MC_PALEMOON + /* Initialize the overlay with visibility:hidden to prevent flickering if + * the plugin is too small to show the overlay */ + visibility: hidden; +%endif display: inline-block; overflow: hidden; opacity: 1 !important; diff --git a/toolkit/pluginproblem/content/pluginProblemContent.css b/toolkit/pluginproblem/content/pluginProblemContent.css index 43a9f52dc..cf8755635 100644 --- a/toolkit/pluginproblem/content/pluginProblemContent.css +++ b/toolkit/pluginproblem/content/pluginProblemContent.css @@ -51,6 +51,7 @@ a .mainBox:focus, line-height: initial; } +%ifndef MC_PALEMOON /* Initialize the overlay with visibility:hidden to prevent flickering if * the plugin is too small to show the overlay */ .mainBox > .hoverBox, @@ -62,6 +63,7 @@ a .mainBox:focus, .visible > .closeIcon { visibility: visible; } +%endif .mainBox[chromedir="rtl"] { direction: rtl; @@ -97,6 +99,10 @@ a .msgTapToPlay, :-moz-handler-blocked .msgBlocked, :-moz-handler-crashed .msgCrashed { display: block; + position: relative; + left: 0; + top: 0; + z-index: 9999; } .submitStatus[status] { diff --git a/toolkit/pluginproblem/jar.mn b/toolkit/pluginproblem/jar.mn index d0af1c82f..c027793de 100644 --- a/toolkit/pluginproblem/jar.mn +++ b/toolkit/pluginproblem/jar.mn @@ -5,6 +5,6 @@ toolkit.jar: % content pluginproblem %pluginproblem/ contentaccessible=yes pluginproblem/pluginProblem.xml (content/pluginProblem.xml) - pluginproblem/pluginProblemContent.css (content/pluginProblemContent.css) - pluginproblem/pluginProblemBinding.css (content/pluginProblemBinding.css) +* pluginproblem/pluginProblemContent.css (content/pluginProblemContent.css) +* pluginproblem/pluginProblemBinding.css (content/pluginProblemBinding.css) pluginproblem/pluginReplaceBinding.css (content/pluginReplaceBinding.css) |