2022-06-15 18:21:03 +00:00
|
|
|
// Copyright 2022 Signal Messenger, LLC
|
|
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
|
|
|
body {
|
2023-01-01 11:41:40 +00:00
|
|
|
// Overridden by ts/background.ts
|
2022-06-20 18:26:31 +00:00
|
|
|
--zoom-factor: 1;
|
|
|
|
|
2022-06-15 18:21:03 +00:00
|
|
|
// These should match the logic in `ts/types/Settings.ts`'s `getTitleBarVisibility`.
|
|
|
|
//
|
|
|
|
// It'd be great if we could use the `:fullscreen` selector here, but that does not seem
|
|
|
|
// to work with Electron, at least on macOS.
|
|
|
|
--title-bar-drag-area-height: 0px; // Needs to have a unit to work with `calc()`.
|
2024-02-13 21:48:09 +00:00
|
|
|
&.os-macos:not(.full-screen),
|
|
|
|
.app-loading-screen--before-app-load {
|
2022-06-20 18:26:31 +00:00
|
|
|
--title-bar-drag-area-height: calc(28px / var(--zoom-factor));
|
2022-06-15 18:21:03 +00:00
|
|
|
}
|
|
|
|
}
|