diff options
author | raveit65 <[email protected]> | 2015-01-08 14:24:14 +0100 |
---|---|---|
committer | raveit65 <[email protected]> | 2015-01-08 14:24:14 +0100 |
commit | 56e98b3bc7c58ec6c7466ca91448f6161f451110 (patch) | |
tree | 088e22df2cb4c0c5ba43247fa4d142a746a430d3 /desktop-themes/Menta | |
parent | a846858f91a71ca755dce5692bea083fe58c4649 (diff) | |
download | mate-themes-56e98b3bc7c58ec6c7466ca91448f6161f451110.tar.bz2 mate-themes-56e98b3bc7c58ec6c7466ca91448f6161f451110.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 | 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 3712f90d..8ef858e3 100644 --- a/desktop-themes/Menta/gtk-3.0/gtk-widgets.css +++ b/desktop-themes/Menta/gtk-3.0/gtk-widgets.css @@ -1486,7 +1486,10 @@ GtkComboBox.combobox-entry .button { } GtkLinkButton.button, -GtkLinkButton.button:active { +GtkLinkButton.button:hover, +GtkLinkButton.button:active, +GtkLinkButton.button:active:hover, { + transition: all 400ms ease-in; text-shadow: none; } @@ -1757,17 +1760,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); } /************** @@ -3031,7 +3036,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); @@ -3081,7 +3086,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; } |