diff options
| author | Stephen Blott | 2016-02-11 07:34:36 +0000 |
|---|---|---|
| committer | Stephen Blott | 2016-02-11 07:34:36 +0000 |
| commit | aabd2068e4ba497c9ad7d237a727121fd573b837 (patch) | |
| tree | 43c08529d3bdf39b5dcc427eed6300ef573ad4be /content_scripts/vimium.css | |
| parent | b6a0cc82d138dd67a77d8e3298c6f56362e729be (diff) | |
| parent | 2aa6af6d9f1b7394be460d66d34166451f04d2b2 (diff) | |
| download | vimium-aabd2068e4ba497c9ad7d237a727121fd573b837.tar.bz2 | |
Merge pull request #1977 from mrmr1993/help-dialog-uicomponent
Move help dialog to a UIComponent
Diffstat (limited to 'content_scripts/vimium.css')
| -rw-r--r-- | content_scripts/vimium.css | 24 |
1 files changed, 20 insertions, 4 deletions
diff --git a/content_scripts/vimium.css b/content_scripts/vimium.css index c08971f2..a763b159 100644 --- a/content_scripts/vimium.css +++ b/content_scripts/vimium.css @@ -137,6 +137,24 @@ div.vimiumHighlightedFrame { /* Help Dialog CSS */ +iframe.vimiumHelpDialogFrame { + background-color: transparent; + padding: 0px; + overflow: hidden; + + display: block; + position: fixed; + width: 100%; + min-width: 400px; + height: 100%; + top: 0px; + left: 0px; + border: none; + + /* One less than hint markers and the vomnibar. */ + z-index: 2147483645; +} + div#vimiumHelpDialog { border:3px solid red; opacity:0.92; @@ -153,8 +171,6 @@ div#vimiumHelpDialog { top:50px; -webkit-box-shadow: rgba(0, 0, 0, 0.4) 0px 0px 6px; overflow-y: auto; - /* One less than vimiumReset */ - z-index: 2147483647; } div#vimiumHelpDialog a { color:blue; } @@ -331,8 +347,8 @@ iframe.vomnibarFrame { border: none; font-family: sans-serif; - /* One less than hint markers and the help dialog. */ - z-index: 2147483645; + /* One less than hint markers. */ + z-index: 2147483646; } div#vimiumFlash { |
