Fix window background overflow when no native titlebar (#4516)

This commit is contained in:
windingwind 2024-08-07 15:01:59 +08:00 committed by GitHub
parent 206496332d
commit 55017926b5
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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;
}
}