diff options
| author | Stephen Blott | 2015-04-28 11:05:16 +0100 |
|---|---|---|
| committer | Stephen Blott | 2015-04-28 11:05:16 +0100 |
| commit | 6e7b04692aceeed6544510f853eb58cdad564f9e (patch) | |
| tree | b130d3713ee23bbc4daf14e75fa7177d2d3b395c /content_scripts | |
| parent | 6073cafed845cd31f88c5b51aafacc44278245fb (diff) | |
| download | vimium-6e7b04692aceeed6544510f853eb58cdad564f9e.tar.bz2 | |
Fix over-riding of vomnibar display CSS.
Fixes #1594.
Diffstat (limited to 'content_scripts')
| -rw-r--r-- | content_scripts/vimium.css | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/content_scripts/vimium.css b/content_scripts/vimium.css index e72eaec8..794803fe 100644 --- a/content_scripts/vimium.css +++ b/content_scripts/vimium.css @@ -279,7 +279,6 @@ iframe.vomnibarFrame { padding: 0px; overflow: hidden; - display: block; position: fixed; width: calc(80% + 20px); /* same adjustment as in pages/vomnibar.coffee */ min-width: 400px; @@ -304,11 +303,11 @@ div#vimiumFlash { /* UIComponent CSS */ iframe.vimiumUIComponentHidden { - display: none; + display: none !important; } iframe.vimiumUIComponentVisible { - display: block; + display: block !important; } iframe.vimiumUIComponentReactivated { |
