# HG changeset patch # User IBBoard # Date 1491834212 -3600 # Node ID 90907f1c42b62df6f3c5aa643f86ee869e14dc0e # Parent 293ef1c0bf3a0a6c553e472749fb86a726807384 Remove fudge from menu styling to fix Firefox GTK3 tabs This was required for LibreOffice to show buttons correctly on toolbars, but LO seems to have fixed their bug now. diff -r 293ef1c0bf3a -r 90907f1c42b6 gtk-3.20/gtk.css --- a/gtk-3.20/gtk.css Mon Apr 10 14:58:03 2017 +0100 +++ b/gtk-3.20/gtk.css Mon Apr 10 15:23:32 2017 +0100 @@ -5022,15 +5022,12 @@ menubar { background-color: #3D3D3D; - color: #161616; + color: #cccccc; box-shadow: inset 0 -1px rgba(0, 0, 0, 0.1); } menubar:backdrop { background-color: #3D3D3D; color: #cccccc; } -menuitem > label { - color: #cccccc; } - menuitem:hover > label { color: #5E7F3E; } diff -r 293ef1c0bf3a -r 90907f1c42b6 gtk-3.20/gtk.scss --- a/gtk-3.20/gtk.scss Mon Apr 10 14:58:03 2017 +0100 +++ b/gtk-3.20/gtk.scss Mon Apr 10 15:23:32 2017 +0100 @@ -425,20 +425,13 @@ } menubar { background-color: $bg_dark_color; - // We should use the following line, but it breaks LibreOffice buttons - // on toolbars, so keep it dark here and revert it for menu items - //color: $menu_fg_dark_color; - color: $fg_color; + color: $menu_fg_dark_color; box-shadow: inset 0 -1px transparentize(black, 0.9); &:backdrop { background-color: $bg_dark_color; color: $menu_fg_dark_color; } } -// Fix the bad text colour we set for menubar to fix LibreOffice -menuitem > label { - color: $menu_fg_dark_color; -} menuitem:hover > label { color: $selected_bg_color }