diff options
author | Daniel Carl <danielcarl@gmx.de> | 2016-04-15 23:54:39 +0200 |
---|---|---|
committer | Daniel Carl <danielcarl@gmx.de> | 2016-04-15 23:54:39 +0200 |
commit | 7edb3dfebc4e83fd1d01cb4b7284cf93f12cf163 (patch) | |
tree | aee7167ada19898d461b96ff9fe7cbbe08b5e129 | |
parent | 6608f8fc19ef4b587596c9ed3cb3b3fcc37c1eb6 (diff) |
Fix none applied status style.
-rw-r--r-- | src/config.def.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/config.def.h b/src/config.def.h index da33cc7..9aecde0 100644 --- a/src/config.def.h +++ b/src/config.def.h @@ -37,9 +37,9 @@ /* number of chars to be shown in statusbar for ambiguous commands */ #define SHOWCMD_LEN 10 /* css applied to the gui elements of the borwser window */ -#define GUI_STYLE "GtkBox#statusbar{color:#fff;background-color:#000;font:monospace bold 10;} \ -GtkBox#statusbar.secure{background-color:#95e454;color:#000;} \ -GtkBox#statusbar.insecure{background-color:#f77;color:#000;} \ +#define GUI_STYLE "#statusbar{color:#fff;background-color:#000;font:monospace bold 10;} \ +#statusbar.secure{background-color:#95e454;color:#000;} \ +#statusbar.insecure{background-color:#f77;color:#000;} \ GtkTextView{background-color:#fff;color:#000;font:monospace 10;} \ GtkTextView.error{background-color:#f77;font-weight:bold;} \ GtkTreeView{color:#fff;background-color:#656565;font:monospace;} \ |