Strengthen the picker's visibility

This commit is contained in:
Deathamns 2015-02-10 19:36:13 +01:00
parent fba0bf73ef
commit af05ceffb8
1 changed files with 5 additions and 3 deletions

View File

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