diff options
| author | Stephen Blott | 2016-04-18 13:47:29 +0100 | 
|---|---|---|
| committer | Stephen Blott | 2016-04-18 13:47:29 +0100 | 
| commit | d5e7e210f19c97ed656e974255efc6223c81ce82 (patch) | |
| tree | 3dc4400ef362bf9a3670948ee0bacd809e4ec4b3 | |
| parent | 247878a7919c5e9b27638395d479939f9ad5d22e (diff) | |
| download | vimium-d5e7e210f19c97ed656e974255efc6223c81ce82.tar.bz2 | |
Revert "Fix options page when help-dialog showing."
This reverts commit f0911e52f0e71c6d2539bdc74a09ff2dbd5ab125.
Conflicts:
	content_scripts/vimium.css
Revert previous change to help-dialog styling.
| -rw-r--r-- | content_scripts/vimium.css | 39 | 
1 files changed, 25 insertions, 14 deletions
| diff --git a/content_scripts/vimium.css b/content_scripts/vimium.css index 4256cc74..a763b159 100644 --- a/content_scripts/vimium.css +++ b/content_scripts/vimium.css @@ -138,28 +138,39 @@ div.vimiumHighlightedFrame {  /* Help Dialog CSS */  iframe.vimiumHelpDialogFrame { -  padding:0px; -  overflow:hidden; -  overflow-y:auto; - -  width:680px; -  min-width:400px; -  height: 745px; -  max-height: 85%; +  background-color: transparent; +  padding: 0px; +  overflow: hidden;    display: block;    position: fixed; -  top:50px; -  left:50%; -  margin-left:-340px; /* Half the width to horizontally center the dialog */ -  z-index:2147483645; /* One less than hint markers and the vomnibar. */ +  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;    background-color:#eee; - +  position:fixed;    border:2px solid #b3b3b3;    border-radius:6px; -  -webkit-box-shadow:rgba(0, 0, 0, 0.4) 0px 0px 6px; +  padding:8px 12px; +  width:640px; +  max-height: calc(100% - 80px); +  left:50%; +  /* This needs to be 1/2 width to horizontally center the help dialog */ +  margin-left:-320px; +  top:50px; +  -webkit-box-shadow: rgba(0, 0, 0, 0.4) 0px 0px 6px; +  overflow-y: auto;  }  div#vimiumHelpDialog a { color:blue; } | 
