aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--platform/firefox/vapi-background.js5
-rw-r--r--src/css/popup.css1
2 files changed, 5 insertions, 1 deletions
diff --git a/platform/firefox/vapi-background.js b/platform/firefox/vapi-background.js
index a74fd23..bf531c0 100644
--- a/platform/firefox/vapi-background.js
+++ b/platform/firefox/vapi-background.js
@@ -2131,9 +2131,12 @@ vAPI.toolbarButton = {
resizeTimer = null;
var body = iframe.contentDocument.body;
panel.parentNode.style.maxWidth = 'none';
+
+ // https://github.com/gorhill/uMatrix/issues/362
+ panel.parentNode.style.opacity = '1';
+
// https://github.com/chrisaljoudi/uBlock/issues/730
// Voodoo programming: this recipe works
-
var clientHeight = body.clientHeight;
iframe.style.height = toPx(clientHeight);
panel.style.height = toPx(clientHeight + panel.boxObject.height - panel.clientHeight);
diff --git a/src/css/popup.css b/src/css/popup.css
index 50b0f0e..cef5934 100644
--- a/src/css/popup.css
+++ b/src/css/popup.css
@@ -3,6 +3,7 @@ body {
border: 0;
float: left;
margin: 0;
+ opacity: 1;
overflow: hidden;
padding: 0;
white-space: nowrap;