From 916b32204cc7a1263a95c91aa826d85ec40b3566 Mon Sep 17 00:00:00 2001 From: EMH-Mark-I Date: Mon, 26 Mar 2018 20:13:57 -0500 Subject: [PATCH] Fix update Fixed incorrect file path in panel.rc. Fixed issue where whisker menu panel button text was white instead of black. Also added a bold font for it. Included a section in the gtk.css file for the whiskermenu font colour. Fixed a GTK3 warning for px. --- Theme/Chicago95/gtk-2.0/panel.rc | 4 ++-- Theme/Chicago95/gtk-3.0/apps/whiskermenu.css | 6 ++++++ Theme/Chicago95/gtk-3.0/gtk-widgets.css | 4 ++-- Theme/Chicago95/gtk-3.0/gtk.css | 3 +++ 4 files changed, 13 insertions(+), 4 deletions(-) mode change 100644 => 100755 Theme/Chicago95/gtk-3.0/gtk-widgets.css diff --git a/Theme/Chicago95/gtk-2.0/panel.rc b/Theme/Chicago95/gtk-2.0/panel.rc index 8e5e427..7d299dd 100755 --- a/Theme/Chicago95/gtk-2.0/panel.rc +++ b/Theme/Chicago95/gtk-2.0/panel.rc @@ -363,7 +363,7 @@ style "whiskerbutton" recolorable = TRUE shadow = IN state = PRELIGHT - file = "panel/null.png" + file = "Others/null.png" border = { 0, 0, 0, 0 } stretch = TRUE } @@ -373,7 +373,7 @@ style "whiskerbutton" function = BOX recolorable = TRUE state = ACTIVE - file = "panel/null.png" + file = "Others/null.png" border = { 0, 0, 0, 0 } stretch = TRUE } diff --git a/Theme/Chicago95/gtk-3.0/apps/whiskermenu.css b/Theme/Chicago95/gtk-3.0/apps/whiskermenu.css index d8fc805..a93cf6e 100644 --- a/Theme/Chicago95/gtk-3.0/apps/whiskermenu.css +++ b/Theme/Chicago95/gtk-3.0/apps/whiskermenu.css @@ -11,6 +11,12 @@ background-color: #c0c0c0; } +#whiskermenu-button label { + color: @whisker_button_text; + font-size: 11px; + font-weight: bold; +} + #whiskermenu-button:active, #whiskermenu-button:checked { padding-left: 3px; diff --git a/Theme/Chicago95/gtk-3.0/gtk-widgets.css b/Theme/Chicago95/gtk-3.0/gtk-widgets.css old mode 100644 new mode 100755 index b681cbc..0e50cf3 --- a/Theme/Chicago95/gtk-3.0/gtk-widgets.css +++ b/Theme/Chicago95/gtk-3.0/gtk-widgets.css @@ -2466,7 +2466,7 @@ printdialog notebook > stack > box { printdialog notebook { border-right: 1px solid black; border-bottom: 1px solid black; - box-shadow: inset 1 1 0 0 white, - inset -1 -1 @bg_shade; + box-shadow: inset 1px 1px 0 0 white, + inset -1px -1px @bg_shade; margin: 7px; } \ No newline at end of file diff --git a/Theme/Chicago95/gtk-3.0/gtk.css b/Theme/Chicago95/gtk-3.0/gtk.css index a0bf03b..1e880ea 100644 --- a/Theme/Chicago95/gtk-3.0/gtk.css +++ b/Theme/Chicago95/gtk-3.0/gtk.css @@ -86,6 +86,9 @@ /*Progressbar bg color*/ @define-color progressbar_color @selected_bg_color; +/*Whisker Menu Panel Button text color*/ +@define-color whisker_button_text black; + @import url("gtk-widgets.css"); @import url("apps/xfce.css"); @import url("apps/whiskermenu.css");