From 55017926b57f329c1bf25df150892f8be2e86c19 Mon Sep 17 00:00:00 2001 From: windingwind <33902321+windingwind@users.noreply.github.com> Date: Wed, 7 Aug 2024 15:01:59 +0800 Subject: [PATCH] Fix window background overflow when no native titlebar (#4516) --- scss/components/_window.scss | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/scss/components/_window.scss b/scss/components/_window.scss index 4742f6f759..4f2d83ab8b 100644 --- a/scss/components/_window.scss +++ b/scss/components/_window.scss @@ -33,3 +33,10 @@ window:root dialog.zotero-dialog-window { padding: 20px; } } + +window:root[tabsintitlebar] { + @media (-moz-platform: linux) { + // Fix background overflow on Linux when no native titlebar + background: transparent; + } +}