diff options
author | raveit65 <[email protected]> | 2015-01-08 14:43:16 +0100 |
---|---|---|
committer | raveit65 <[email protected]> | 2015-01-08 14:43:16 +0100 |
commit | 364c003a53b1f7a24466ad3541c61f0317b85b83 (patch) | |
tree | 8f34820231a4134596d30d96c0198e3f1aacd132 /desktop-themes/Menta | |
parent | 97a51aea4bc331dc5233835abfa5901a41bc5b2e (diff) | |
download | mate-themes-364c003a53b1f7a24466ad3541c61f0317b85b83.tar.bz2 mate-themes-364c003a53b1f7a24466ad3541c61f0317b85b83.tar.xz |
Menta GTK3:
- fix hover fg color in GtkComboBox popups
- add transition effect to GtkComboBox button
- add transition effect to GtkLinkButton
- set another focus-line entry to zero
Diffstat (limited to 'desktop-themes/Menta')
-rw-r--r-- | desktop-themes/Menta/gtk-3.0/gtk-widgets.css | 19 |
1 files changed, 12 insertions, 7 deletions
diff --git a/desktop-themes/Menta/gtk-3.0/gtk-widgets.css b/desktop-themes/Menta/gtk-3.0/gtk-widgets.css index 377c72fd..3f3f67de 100644 --- a/desktop-themes/Menta/gtk-3.0/gtk-widgets.css +++ b/desktop-themes/Menta/gtk-3.0/gtk-widgets.css @@ -1489,8 +1489,11 @@ GtkComboBox.combobox-entry .button { } GtkLinkButton.button, -GtkLinkButton.button *:active { - text-shadow: none; +GtkLinkButton.button *:hover, +GtkLinkButton.button *:active, +GtkLinkButton.button *:active:hover { + transition: all 400ms ease-in; + text-shadow: none; } .button .separator { @@ -1742,17 +1745,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: @internal_element_color; + color: shade (@theme_selected_bg_color, 0.80); } /************** @@ -2904,7 +2909,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); @@ -2954,7 +2959,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; } |