Ensure dropdown is not a drag element on macOS (#2540)

This commit is contained in:
Michael Telatynski
2025-09-05 10:17:21 +01:00
committed by GitHub
parent 15f944581b
commit f1039d3fc2

View File

@@ -53,7 +53,8 @@ export function setupMacosTitleBar(window: BrowserWindow): void {
}
/* Exclude the main content elements from being drag handles */
.mx_AuthPage .mx_AuthPage_modalBlur,
.mx_AuthPage .mx_AuthFooter > * {
.mx_AuthPage .mx_AuthFooter > *,
.mx_AuthPage .mx_Dropdown_menu {
-webkit-app-region: no-drag;
}