diff options
-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; } |