diff options
author | raveit65 <[email protected]> | 2015-01-08 15:10:51 +0100 |
---|---|---|
committer | raveit65 <[email protected]> | 2015-01-08 15:12:08 +0100 |
commit | 3631adef75390cd46e1ffaaf47b0a15eebec491e (patch) | |
tree | 812ad4f09ffe9af885503740880f154921dba540 /desktop-themes | |
parent | 3cbb2be24214ea8404aab8b6f4e3823d050205d8 (diff) | |
download | mate-themes-3631adef75390cd46e1ffaaf47b0a15eebec491e.tar.bz2 mate-themes-3631adef75390cd46e1ffaaf47b0a15eebec491e.tar.xz |
Menta GTK3:
- fix hover fg color in GtkComboBox popups
- add transition effect to GtkComboBox button
- add transition effect to GtkLinkButton
Diffstat (limited to 'desktop-themes')
-rw-r--r-- | desktop-themes/Menta/gtk-3.0/gtk-widgets.css | 17 |
1 files changed, 11 insertions, 6 deletions
diff --git a/desktop-themes/Menta/gtk-3.0/gtk-widgets.css b/desktop-themes/Menta/gtk-3.0/gtk-widgets.css index ba5aecb6..dbd833fe 100644 --- a/desktop-themes/Menta/gtk-3.0/gtk-widgets.css +++ b/desktop-themes/Menta/gtk-3.0/gtk-widgets.css @@ -1450,8 +1450,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 { @@ -1820,17 +1823,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); } /******************** @@ -3425,7 +3430,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; } |