diff options
author | raveit65 <[email protected]> | 2015-01-08 15:04:03 +0100 |
---|---|---|
committer | raveit65 <[email protected]> | 2015-01-08 15:04:03 +0100 |
commit | b2e50baedd28e9e97ad1733624a6ba844688763c (patch) | |
tree | 3f9cd1430ef76256ea1e6a2617beb7e100044f77 | |
parent | 26b52a6ba5f2757ddae53ebb62131165a8064532 (diff) | |
download | mate-themes-b2e50baedd28e9e97ad1733624a6ba844688763c.tar.bz2 mate-themes-b2e50baedd28e9e97ad1733624a6ba844688763c.tar.xz |
Menta GTK3:
- add transition effect to GtkComboBox button
- add transition effect to GtkLinkButton
-rw-r--r-- | desktop-themes/Menta/gtk-3.0/gtk-widgets.css | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/desktop-themes/Menta/gtk-3.0/gtk-widgets.css b/desktop-themes/Menta/gtk-3.0/gtk-widgets.css index b293e540..75846a01 100644 --- a/desktop-themes/Menta/gtk-3.0/gtk-widgets.css +++ b/desktop-themes/Menta/gtk-3.0/gtk-widgets.css @@ -1454,7 +1454,9 @@ GtkComboBox.combobox-entry .button { } GtkLinkButton.button, -GtkLinkButton.button:active { +GtkLinkButton.button:hover, +GtkLinkButton.button:active, +GtkLinkButton.button:active:hover { text-shadow: none; } @@ -1779,17 +1781,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: @internal_element_color; + color: @internal_element_color; } GtkComboBox .button:hover { - color: @theme_text_color; + color: shade (@theme_selected_bg_color, 0.80); } /******************** |