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