From f66bdeb079115875c9ce06cf3330ca9cf1860ba7 Mon Sep 17 00:00:00 2001 From: MrOtherGuy Date: Sun, 12 Apr 2020 21:51:36 +0300 Subject: [PATCH] Don't set titlebar padding to 0 on Windows10 even if the osx smoothing pref is true --- chrome/Fx65_tabs_on_bottom.css | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/chrome/Fx65_tabs_on_bottom.css b/chrome/Fx65_tabs_on_bottom.css index 9746ab2..72079be 100644 --- a/chrome/Fx65_tabs_on_bottom.css +++ b/chrome/Fx65_tabs_on_bottom.css @@ -27,7 +27,9 @@ linux_gtk_window_control_patch.css } /* Mac specific. You should set that font-smoothing pref to true if you are on any platform where window controls are on left */ @supports -moz-bool-pref("layout.css.osx-font-smoothing.enabled"){ - :root{ --uc-titlebar-padding: 0px !important } + @media not (-moz-os-version: windows-win10){ + :root{ --uc-titlebar-padding: 0px !important } + } .titlebar-buttonbox-container{ left:0; right: unset; } }