Merge pull request #160 from ueokande/iframe-transparency
Fix for certain pages
This commit is contained in:
commit
7e506f5f21
4 changed files with 8 additions and 4 deletions
|
@ -7,7 +7,7 @@
|
|||
</head>
|
||||
<body class='vimvixen-console'>
|
||||
<p class='vimvixen-console-message'></p>
|
||||
<div id='vimvixen-console-command'>
|
||||
<div id='vimvixen-console-command' class='vimvixen-console-command-wrapper'>
|
||||
<ul id='vimvixen-console-completion' class='vimvixen-console-completion'></ul>
|
||||
<div class='vimvixen-console-command'>
|
||||
<i class='vimvixen-console-command-prompt'></i><input
|
||||
|
|
|
@ -12,7 +12,6 @@ body {
|
|||
}
|
||||
|
||||
.vimvixen-console {
|
||||
border-top: 1px solid gray;
|
||||
bottom: 0;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
|
@ -24,6 +23,10 @@ body {
|
|||
line-height: 16px;
|
||||
}
|
||||
|
||||
&-command-wrapper {
|
||||
border-top: 1px solid gray;
|
||||
}
|
||||
|
||||
&-completion {
|
||||
background-color: white;
|
||||
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
font-weight: bold;
|
||||
position: absolute;
|
||||
text-transform: uppercase;
|
||||
z-index: 100000;
|
||||
z-index: 2147483647;
|
||||
font-size: 12px;
|
||||
color: black;
|
||||
}
|
||||
|
|
|
@ -6,7 +6,8 @@
|
|||
width: 100%;
|
||||
height: 100%;
|
||||
position: fixed;
|
||||
z-index: 10000;
|
||||
z-index: 2147483647;
|
||||
border: none;
|
||||
background-color: unset;
|
||||
pointer-events:none;
|
||||
}
|
||||
|
|
Reference in a new issue