diff options
author | gorhill <rhill@raymondhill.net> | 2014-10-19 10:50:19 -0400 |
---|---|---|
committer | gorhill <rhill@raymondhill.net> | 2014-10-19 10:50:19 -0400 |
commit | b7819bbdc657cbd2be5ac58c92474492267e7a36 (patch) | |
tree | c5eb62cebcab6f2cde3cf545e9eca9a2b51e5213 | |
parent | 7fbff6c8fe92b867a37f6fe4f1c6369878e794b6 (diff) | |
download | uBlock-b7819bbdc657cbd2be5ac58c92474492267e7a36.zip uBlock-b7819bbdc657cbd2be5ac58c92474492267e7a36.tar.gz uBlock-b7819bbdc657cbd2be5ac58c92474492267e7a36.tar.bz2 |
this fixes #332
-rw-r--r-- | js/element-picker.js | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/js/element-picker.js b/js/element-picker.js index 0539634..92cf586 100644 --- a/js/element-picker.js +++ b/js/element-picker.js @@ -787,6 +787,7 @@ var startPicker = function() { 'box-shadow: none;', 'color: #000;', 'font: 12px sans-serif;', + 'height: auto;', 'letter-spacing: normal;', 'margin: 0;', 'max-width: none;', @@ -880,9 +881,9 @@ var startPicker = function() { 'border: 1px solid #ccc;', 'padding: 2px;', 'box-sizing: border-box;', - 'width: 100%;', - 'height: 100%;', - 'overflow: hidden;', + 'width: 100% !important;', + 'height: 100% !important;', + 'overflow: hidden !important;', 'resize: none;', 'background-color: white;', 'font: 11px monospace;', |