From 8e8e10d07d407fabba75f29ad913ee7d295608c1 Mon Sep 17 00:00:00 2001 From: Doug Kearns Date: Mon, 24 Sep 2007 14:53:27 +0000 Subject: [PATCH] hide the statusbar's resizer panel since it's no longer at the window's bottom right corner --- chrome/content/vimperator/default.css | 22 +++++++++++++--------- 1 file changed, 13 insertions(+), 9 deletions(-) diff --git a/chrome/content/vimperator/default.css b/chrome/content/vimperator/default.css index c15e0dc3..5dfbfe25 100644 --- a/chrome/content/vimperator/default.css +++ b/chrome/content/vimperator/default.css @@ -165,6 +165,10 @@ fieldset.paypal { background-color: transparent; color: black; } +/* no longer at the window's bottom right corner */ +.statusbar-resizerpanel { + display: none; +} #vimperator-commandline { /* FIXME: black on white or default skin colors? */ @@ -173,15 +177,6 @@ fieldset.paypal { padding: 1px; } -#vimperator-multiline-output { - overflow: hidden; -} - -#vimperator-visualbell { - border: none; - background-color: black; -} - /* colors for the statusbar */ /* #status-bar is included so it also get's the right color before the first setClass("insecure") */ #status-bar, .status_insecure, .status_insecure * { @@ -197,4 +192,13 @@ fieldset.paypal { color: black; } +#vimperator-multiline-output { + overflow: hidden; +} + +#vimperator-visualbell { + border: none; + background-color: black; +} + /* vim: set fdm=marker sw=4 ts=4 et: */