From 63863612b9aa1e6effe16aadaad6966a34e1cb90 Mon Sep 17 00:00:00 2001 From: MrOtherGuy Date: Sun, 5 May 2019 13:42:28 +0300 Subject: [PATCH] Override titlebarbutton box direction for linux_gtk systems --- chrome/Fx65_tabs_on_bottom.css | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/chrome/Fx65_tabs_on_bottom.css b/chrome/Fx65_tabs_on_bottom.css index 7611f2f..94dc79d 100644 --- a/chrome/Fx65_tabs_on_bottom.css +++ b/chrome/Fx65_tabs_on_bottom.css @@ -7,7 +7,11 @@ have menubar permanently enabled and want it on top /* IMPORTANT */ /* Get window_control_placeholder_support.css -Window controls will be all wrong without it +Window controls will be all wrong without it. + +Additionally on Linux, you may need to get: +linux_gtk_window_control_patch.css + */ :root{ @@ -43,4 +47,6 @@ Window controls will be all wrong without it .titlebar-placeholder, #TabsToolbar .titlebar-spacer{ display: none; } /* Also hide the toolbox bottom border which isn't at bottom with this setup */ -#navigator-toolbox::after{ display: none !important; } \ No newline at end of file +#navigator-toolbox::after{ display: none !important; } + +@media (-moz-gtk-csd-close-button){ .titlebar-button{ -moz-box-orient: vertical } }