changeset 52:90907f1c42b6

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.
author IBBoard <dev@ibboard.co.uk>
date Mon, 10 Apr 2017 15:23:32 +0100
parents 293ef1c0bf3a
children 12f43097192d
files gtk-3.20/gtk.css gtk-3.20/gtk.scss
diffstat 2 files changed, 2 insertions(+), 12 deletions(-) [+]
line wrap: on
line diff
--- 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; }
 
--- 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
 }