diff options
| author | Stephen Blott | 2015-05-10 22:29:41 +0100 |
|---|---|---|
| committer | Stephen Blott | 2015-05-10 22:29:41 +0100 |
| commit | 42adefc558976e2118c55f54d23e3f4e73693258 (patch) | |
| tree | 8e44089fc44c9c7f1d91e5a93a8ac488f6babd70 /content_scripts/vimium.css | |
| parent | 4c49931da03535eb73f29879122fa1926a5987da (diff) | |
| parent | f54a273e97e5feeae2978845b4dfc2f154445e7f (diff) | |
| download | vimium-42adefc558976e2118c55f54d23e3f4e73693258.tar.bz2 | |
Merge pull request #1648 from mrmr1993/better-borderWas
Use classes for border flashes
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 { |
