diff options
| author | Stephen Blott | 2015-04-28 13:33:08 +0100 |
|---|---|---|
| committer | Stephen Blott | 2015-04-28 13:33:08 +0100 |
| commit | 833f6dc8d26b53be642c54d1e778bb3c526b10fc (patch) | |
| tree | 1a95671e5f9636dcfa05e02ea82786c4c509ae02 | |
| parent | 8975229fd637ca1a91d7c52beb5969fe2b5e4d27 (diff) | |
| parent | 6e7b04692aceeed6544510f853eb58cdad564f9e (diff) | |
| download | vimium-833f6dc8d26b53be642c54d1e778bb3c526b10fc.tar.bz2 | |
Merge pull request #1613 from smblott-github/fix-vomnibar-permanent-visibility
Fix over-riding of vomnibar display CSS.
| -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 { |
