mirror of https://github.com/gorhill/uBlock.git
Strengthen the picker's visibility
This commit is contained in:
parent
fba0bf73ef
commit
af05ceffb8
|
@ -783,19 +783,21 @@ var startPicker = function(details) {
|
||||||
pickerRoot = document.createElement('iframe');
|
pickerRoot = document.createElement('iframe');
|
||||||
pickerRoot.id = vAPI.sessionId;
|
pickerRoot.id = vAPI.sessionId;
|
||||||
pickerRoot.style.cssText = [
|
pickerRoot.style.cssText = [
|
||||||
|
'display: block',
|
||||||
|
'visibility: visible',
|
||||||
|
'opacity: 1',
|
||||||
'position: fixed',
|
'position: fixed',
|
||||||
'top: 0',
|
'top: 0',
|
||||||
'left: 0',
|
'left: 0',
|
||||||
'width: 100%',
|
'width: 100%',
|
||||||
'height: 100%',
|
'height: 100%',
|
||||||
'background: transparent',
|
'background: transparent',
|
||||||
|
'margin: 0',
|
||||||
|
'padding: 0',
|
||||||
'border: 0',
|
'border: 0',
|
||||||
'border-radius: 0',
|
'border-radius: 0',
|
||||||
'box-shadow: none',
|
'box-shadow: none',
|
||||||
'float: none',
|
|
||||||
'margin: 0',
|
|
||||||
'outline: 0',
|
'outline: 0',
|
||||||
'padding: 0',
|
|
||||||
'z-index: 2147483647',
|
'z-index: 2147483647',
|
||||||
''
|
''
|
||||||
].join('!important; ');
|
].join('!important; ');
|
||||||
|
|
Loading…
Reference in New Issue