diff options
author | raveit65 <[email protected]> | 2015-01-07 23:29:23 +0100 |
---|---|---|
committer | raveit65 <[email protected]> | 2015-01-07 23:36:34 +0100 |
commit | 97a51aea4bc331dc5233835abfa5901a41bc5b2e (patch) | |
tree | c0847a60378c6fca07af29b02093226f7bb305b0 | |
parent | e35ad1f7caa174a35c8a722762f0424239085673 (diff) | |
download | mate-themes-97a51aea4bc331dc5233835abfa5901a41bc5b2e.tar.bz2 mate-themes-97a51aea4bc331dc5233835abfa5901a41bc5b2e.tar.xz |
BlueMenta GTK3:
- fix hover fg color in GtkComboBox popups
- add transition effect to GtkComboBox button
- set another focus-line entry to zero
-rw-r--r-- | desktop-themes/BlueMenta/gtk-3.0/gtk-widgets.css | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/desktop-themes/BlueMenta/gtk-3.0/gtk-widgets.css b/desktop-themes/BlueMenta/gtk-3.0/gtk-widgets.css index f0679813..ab2e76b0 100644 --- a/desktop-themes/BlueMenta/gtk-3.0/gtk-widgets.css +++ b/desktop-themes/BlueMenta/gtk-3.0/gtk-widgets.css @@ -1757,17 +1757,19 @@ GtkComboBox.combobox-entry .button:insensitive:last-child { box-shadow: inset 1px 0 @inset_dark_color; } +GtkComboBox.combobox-entry .button:hover, GtkComboBox.combobox-entry .button:active, GtkComboBox.combobox-entry .button:active:hover { - color: @theme_text_color; + color: shade (@theme_selected_bg_color, 0.80); + transition: all 200ms ease-in; } GtkComboBox .button { - color: @theme_text_color; + color: @theme_text_color; } GtkComboBox .button:hover { - color: @theme_text_color; + color: shade (@theme_selected_bg_color, 0.80); } /************** @@ -3022,7 +3024,7 @@ GtkSwitch.slider { GtkTreeView { -GtkTreeView-vertical-separator: 0; - -GtkWidget-focus-line-width: 1; + -GtkWidget-focus-line-width: 0; -GtkWidget-focus-padding: 1; outline-color: alpha(@theme_text_color, 0.6); @@ -3072,7 +3074,7 @@ GtkIconView.cell:selected:focus { } .cell { - color: @theme_text_color; + /*color: @theme_text_color;*/ /* Don't use, seems to change hover effect on combobox menuitems */ padding: 2px; text-shadow: none; } |