diff options
| author | mrmr1993 | 2015-05-10 00:51:05 +0100 | 
|---|---|---|
| committer | mrmr1993 | 2015-05-10 00:51:05 +0100 | 
| commit | d72b36bd54915c38c4cf370dd36cec54b82f7e62 (patch) | |
| tree | 9b31ad8887ca791063a5c17096347e3dcbba74f4 /content_scripts/vimium.css | |
| parent | 4c49931da03535eb73f29879122fa1926a5987da (diff) | |
| download | vimium-d72b36bd54915c38c4cf370dd36cec54b82f7e62.tar.bz2 | |
Use classes for border flashes, in a shadow DOM to avoid CSS collisions
Diffstat (limited to 'content_scripts/vimium.css')
| -rw-r--r-- | content_scripts/vimium.css | 14 | 
1 files changed, 14 insertions, 0 deletions
diff --git a/content_scripts/vimium.css b/content_scripts/vimium.css index fb8824c2..5180fb22 100644 --- a/content_scripts/vimium.css +++ b/content_scripts/vimium.css @@ -109,6 +109,20 @@ div.internalVimiumSelectedInputHint span {    color: white !important;  } +/* Frame Highlight Marker CSS*/ +div.vimiumHighlightedFrame { +  position: fixed; +  top: 0px; +  left: 0px; +  width: 100%; +  height: 100%; +  padding: 0px; +  margin: 0px; +  border: 5px solid yellow; +  box-sizing: border-box; +  pointer-events: none; +} +  /* Help Dialog CSS */  div#vimiumHelpDialog {  | 
