diff options
author | raveit65 <[email protected]> | 2015-08-14 14:11:12 +0200 |
---|---|---|
committer | raveit65 <[email protected]> | 2015-08-14 14:11:48 +0200 |
commit | 352df5e54a0706c188d0532d4036b5a181449d9b (patch) | |
tree | 00f947d7b121e242da046be509ef909864bc42b1 /desktop-themes | |
parent | 7c8ab705f78f8a63a42b4c497a16c7e454dc3e0a (diff) | |
download | mate-themes-352df5e54a0706c188d0532d4036b5a181449d9b.tar.bz2 mate-themes-352df5e54a0706c188d0532d4036b5a181449d9b.tar.xz |
GTK3 ContrastHigh: adjust list-rows
Diffstat (limited to 'desktop-themes')
-rw-r--r-- | desktop-themes/ContrastHigh/gtk-3.0/gtk-widgets.css | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/desktop-themes/ContrastHigh/gtk-3.0/gtk-widgets.css b/desktop-themes/ContrastHigh/gtk-3.0/gtk-widgets.css index f4c47dd8..5372a617 100644 --- a/desktop-themes/ContrastHigh/gtk-3.0/gtk-widgets.css +++ b/desktop-themes/ContrastHigh/gtk-3.0/gtk-widgets.css @@ -1997,9 +1997,13 @@ GtkIconView.view.cell { .list-row.button:hover, .list-row.button:backdrop:hover, .list-row.button:selected:hover { - background-color: @theme_selected_bg_color; - color: @theme_selected_fg_color; + background-color: @theme_button_bg; + color: @theme_fg_color; border-radius: 4px; + box-shadow: inset 0px 1px shade (@theme_fg_color, 1.3), + inset 1px 0px shade (@theme_fg_color, 1.3), + inset -1px 0px shade (@theme_fg_color, 1.3), + inset 0px -1px shade (@theme_fg_color, 1.3); } .list-row.button:active { @@ -2008,7 +2012,8 @@ GtkIconView.view.cell { .list-row.button:selected, .list-row.button:selected:active { - color: @theme_fg_color; + background-color: @theme_selected_bg_color; + color: @theme_selected_fg_color; box-shadow: inset 0 2px 3px -1px transparentize(black,0.5); border-radius: 4px; } @@ -2016,7 +2021,6 @@ GtkIconView.view.cell { .list-row:selected { background-color: @theme_button_bg; color: @theme_fg_color; - border-style: solid; border-radius: 4px; } |