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 /toolkit/pluginproblem/content/pluginProblemContent.css | |
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
Diffstat (limited to 'toolkit/pluginproblem/content/pluginProblemContent.css')
-rw-r--r-- | toolkit/pluginproblem/content/pluginProblemContent.css | 6 |
1 files changed, 6 insertions, 0 deletions
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] { |