Merge pull request #160 from ueokande/iframe-transparency

Fix for certain pages
jh-changes
Shin'ya Ueoka 7 years ago committed by GitHub
commit 7e506f5f21
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      src/console/index.html
  2. 5
      src/console/site.scss
  3. 2
      src/content/components/common/hint.css
  4. 3
      src/content/console-frame.scss

@ -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;
}