Merge pull request #571 from ueokande/prevent-content-security-policy
Fix Content-Security-Policy issuesjh-changes
commit
b67129de6a
6 changed files with 31 additions and 26 deletions
@ -1,10 +0,0 @@ |
|||||||
.vimvixen-hint { |
|
||||||
background-color: yellow; |
|
||||||
border: 1px solid gold; |
|
||||||
font-weight: bold; |
|
||||||
position: absolute; |
|
||||||
text-transform: uppercase; |
|
||||||
z-index: 2147483647; |
|
||||||
font-size: 12px; |
|
||||||
color: black; |
|
||||||
} |
|
@ -1,13 +0,0 @@ |
|||||||
.vimvixen-console-frame { |
|
||||||
margin: 0; |
|
||||||
padding: 0; |
|
||||||
bottom: 0; |
|
||||||
left: 0; |
|
||||||
width: 100%; |
|
||||||
height: 100%; |
|
||||||
position: fixed; |
|
||||||
z-index: 2147483647; |
|
||||||
border: none; |
|
||||||
background-color: unset; |
|
||||||
pointer-events:none; |
|
||||||
} |
|
@ -0,0 +1,26 @@ |
|||||||
|
exports.default = ` |
||||||
|
.vimvixen-console-frame { |
||||||
|
margin: 0; |
||||||
|
padding: 0; |
||||||
|
bottom: 0; |
||||||
|
left: 0; |
||||||
|
width: 100%; |
||||||
|
height: 100%; |
||||||
|
position: fixed; |
||||||
|
z-index: 2147483647; |
||||||
|
border: none; |
||||||
|
background-color: unset; |
||||||
|
pointer-events:none; |
||||||
|
} |
||||||
|
|
||||||
|
.vimvixen-hint { |
||||||
|
background-color: yellow; |
||||||
|
border: 1px solid gold; |
||||||
|
font-weight: bold; |
||||||
|
position: absolute; |
||||||
|
text-transform: uppercase; |
||||||
|
z-index: 2147483647; |
||||||
|
font-size: 12px; |
||||||
|
color: black; |
||||||
|
} |
||||||
|
`;
|
Reference in new issue