diff options
author | raveit65 <[email protected]> | 2014-12-26 03:25:09 +0100 |
---|---|---|
committer | raveit65 <[email protected]> | 2014-12-26 03:26:38 +0100 |
commit | 9381d8b7547df135383fd1c3681e479fefa9b149 (patch) | |
tree | 453664e17e6b2033c23abaf2eb132d1a4b6b50bc | |
parent | 0e3c68f27cf7a8ff0db8c6d1a7847c3476c78910 (diff) | |
download | mate-themes-9381d8b7547df135383fd1c3681e479fefa9b149.tar.bz2 mate-themes-9381d8b7547df135383fd1c3681e479fefa9b149.tar.xz |
GreenLaguna GTK3: set hover color for sidebars and view entries
-rw-r--r-- | desktop-themes/GreenLaguna/gtk-3.0/gtk-widgets.css | 25 |
1 files changed, 24 insertions, 1 deletions
diff --git a/desktop-themes/GreenLaguna/gtk-3.0/gtk-widgets.css b/desktop-themes/GreenLaguna/gtk-3.0/gtk-widgets.css index 38c7a53a..1cc1e239 100644 --- a/desktop-themes/GreenLaguna/gtk-3.0/gtk-widgets.css +++ b/desktop-themes/GreenLaguna/gtk-3.0/gtk-widgets.css @@ -183,6 +183,14 @@ color: @theme_selected_fg_color; } +/* ie. pluma open dialog */ +.view row:hover { + background-image: linear-gradient(to bottom, + @theme_bg_color, + shade(@theme_bg_color, 0.80)); + color: shade (@theme_selected_bg_color, 0.35); +} + /* Exceptional views */ GtkTextView.view, GtkTextView.view:insensitive, @@ -1291,7 +1299,7 @@ GtkTreeMenu .menuitem * { /*border-color: shade(@theme_selected_bg_color, 0.8);*/ background-image: linear-gradient(to bottom, @theme_bg_color, - shade(@theme_bg_color, 0.55)); + shade(@theme_bg_color, 0.80)); } .menu.button:insensitive { @@ -2337,6 +2345,21 @@ GtkLabel { color: alpha(@frame_color, 0.6); } +.sidebar row:hover { + background-image: linear-gradient(to bottom, + @theme_bg_color, + shade(@theme_bg_color, 0.80)); + color: shade (@theme_selected_bg_color, 0.35); +} + +/* ie. pluma open dialog */ +.sidebar GtkTreeView row:hover { + background-image: linear-gradient(to bottom, + @theme_bg_color, + shade(@theme_bg_color, 0.80)); + color: shade (@theme_selected_bg_color, 0.35); +} + ApDocView, /* Abiword */ EogScrollView, /* Eog */ CheeseThumbView /* Cheese */ |