1
0
mirror of https://github.com/gorhill/uBlock.git synced 2024-11-01 16:33:06 +01:00

Strengthen the picker's visibility

This commit is contained in:
Deathamns 2015-02-10 19:36:13 +01:00
parent fba0bf73ef
commit af05ceffb8

View File

@ -783,19 +783,21 @@ var startPicker = function(details) {
pickerRoot = document.createElement('iframe');
pickerRoot.id = vAPI.sessionId;
pickerRoot.style.cssText = [
'display: block',
'visibility: visible',
'opacity: 1',
'position: fixed',
'top: 0',
'left: 0',
'width: 100%',
'height: 100%',
'background: transparent',
'margin: 0',
'padding: 0',
'border: 0',
'border-radius: 0',
'box-shadow: none',
'float: none',
'margin: 0',
'outline: 0',
'padding: 0',
'z-index: 2147483647',
''
].join('!important; ');