diff options
| author | Stephen Blott | 2014-12-21 07:50:13 +0000 |
|---|---|---|
| committer | Stephen Blott | 2014-12-21 07:50:13 +0000 |
| commit | 0409bcdc8ee753e8ff3832cb852f604f8d347688 (patch) | |
| tree | ef4b900859582fcfbdcf577fa8068ebf39185a3e | |
| parent | ae3794d10f11f61d7d78c523afc3abc4d5f72467 (diff) | |
| download | vimium-0409bcdc8ee753e8ff3832cb852f604f8d347688.tar.bz2 | |
Exclusion; rework layout.
| -rw-r--r-- | pages/options.css | 2 | ||||
| -rw-r--r-- | pages/popup.html | 23 |
2 files changed, 9 insertions, 16 deletions
diff --git a/pages/options.css b/pages/options.css index 148d1330..5b098c8f 100644 --- a/pages/options.css +++ b/pages/options.css @@ -1,3 +1,5 @@ +/* NOTE: This stylesheet is included in both options.html and popup.html. So changes here affect + both of these. */ body { font: 14px "DejaVu Sans", "Arial", sans-serif; color: #303942; diff --git a/pages/popup.html b/pages/popup.html index 6c2dc2d0..c84845f5 100644 --- a/pages/popup.html +++ b/pages/popup.html @@ -7,36 +7,27 @@ padding: 0px; } - #endSpace { - width: 450px; - } - #helpText, #optionsLink { font-family : "Helvetica Neue", "Helvetica", "Arial", sans-serif; font-size: 12px; } - #helpText { - color: #979ca0; - } + #helpText { color: #979ca0; } #exclusionAddButton { width: 80px; } - /* Styles overwridden or changed from options.css. */ + /* These are overridden from options.css. */ - #footerWrapper { - width: 450px; /* As for #endSpace */ - margin-left: 0px; - } + #endSpace, #footerWrapper { width: 450px; } - #endSpace { - /* Leave space for the fixed footer. */ - min-height: 36px; - max-height: 36px; + #endSpace { /* Leave space for the fixed footer. */ + min-height: 46px; + max-height: 46px; } + #footerWrapper { margin-left: 0px; } </style> <script src="options.js"></script> </head> |
