changeset 33:389af1327aa1

Fix menu colour of top-level menu items on hover
author IBBoard <dev@ibboard.co.uk>
date Mon, 19 Dec 2016 19:51:13 +0000
parents 09cbf23e5f34
children 309d91bf7213
files gtk-3.20/gtk.css gtk-3.20/gtk.scss
diffstat 2 files changed, 6 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/gtk-3.20/gtk.css	Sat Dec 17 20:06:54 2016 +0000
+++ b/gtk-3.20/gtk.css	Mon Dec 19 19:51:13 2016 +0000
@@ -4840,6 +4840,9 @@
 menuitem > label {
   color: #cccccc; }
 
+menuitem:hover > label {
+  color: #5E7F3E; }
+
 menu, .menu, .context-menu {
   background-color: #3D3D3D;
   color: #cccccc;
--- a/gtk-3.20/gtk.scss	Sat Dec 17 20:06:54 2016 +0000
+++ b/gtk-3.20/gtk.scss	Mon Dec 19 19:51:13 2016 +0000
@@ -425,6 +425,9 @@
 menuitem > label {
   color: $menu_fg_dark_color;
 }
+menuitem:hover > label {
+  color: $selected_bg_color
+}
 // Make all menus dark - we mainly want the menu bar menus dark, but
 // Firefox and other non-standard apps use those colours for their
 // context menus as well, so be consistent.