1
0
mirror of https://github.com/gorhill/uBlock.git synced 2024-07-08 12:57:57 +02:00

attempt at fixing #362

This commit is contained in:
gorhill 2015-09-25 08:29:52 -04:00
parent e858c91224
commit 69d4a0aa0a
2 changed files with 5 additions and 1 deletions

View File

@ -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);

View File

@ -3,6 +3,7 @@ body {
border: 0;
float: left;
margin: 0;
opacity: 1;
overflow: hidden;
padding: 0;
white-space: nowrap;