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>
|
</head>
|
||||||
<body class='vimvixen-console'>
|
<body class='vimvixen-console'>
|
||||||
<p class='vimvixen-console-message'></p>
|
<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>
|
<ul id='vimvixen-console-completion' class='vimvixen-console-completion'></ul>
|
||||||
<div class='vimvixen-console-command'>
|
<div class='vimvixen-console-command'>
|
||||||
<i class='vimvixen-console-command-prompt'></i><input
|
<i class='vimvixen-console-command-prompt'></i><input
|
||||||
|
|
|
@ -12,7 +12,6 @@ body {
|
||||||
}
|
}
|
||||||
|
|
||||||
.vimvixen-console {
|
.vimvixen-console {
|
||||||
border-top: 1px solid gray;
|
|
||||||
bottom: 0;
|
bottom: 0;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
|
@ -24,6 +23,10 @@ body {
|
||||||
line-height: 16px;
|
line-height: 16px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
&-command-wrapper {
|
||||||
|
border-top: 1px solid gray;
|
||||||
|
}
|
||||||
|
|
||||||
&-completion {
|
&-completion {
|
||||||
background-color: white;
|
background-color: white;
|
||||||
|
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
position: absolute;
|
position: absolute;
|
||||||
text-transform: uppercase;
|
text-transform: uppercase;
|
||||||
z-index: 100000;
|
z-index: 2147483647;
|
||||||
font-size: 12px;
|
font-size: 12px;
|
||||||
color: black;
|
color: black;
|
||||||
}
|
}
|
||||||
|
|
|
@ -6,7 +6,8 @@
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
position: fixed;
|
position: fixed;
|
||||||
z-index: 10000;
|
z-index: 2147483647;
|
||||||
border: none;
|
border: none;
|
||||||
|
background-color: unset;
|
||||||
pointer-events:none;
|
pointer-events:none;
|
||||||
}
|
}
|
||||||
|
|
Reference in a new issue