From 1a166addd3e78f9ee7ef28f4887dbc0ae81b8b22 Mon Sep 17 00:00:00 2001 From: Dawn Date: Wed, 26 Aug 2026 14:31:00 +0200 Subject: [PATCH 1/2] style: reduce separator hint deplay to 66 --- src/aare/gui/styles.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/aare/gui/styles.py b/src/aare/gui/styles.py index 41254aeb..3543ce20 100644 --- a/src/aare/gui/styles.py +++ b/src/aare/gui/styles.py @@ -118,7 +118,7 @@ BANNER_TAB_GAP = 6 # separator under the cursor fills with SEPARATOR_HINT. The rest/drag gate # lives in MainWindow.event(); the QSS :hover part picks the one separator. SEPARATOR_HINT = "rgba(168, 178, 192, 20%)" # scrollbar-track grey @50% -SEPARATOR_HINT_DELAY_MS = 888 # int, used in code, not QSS +SEPARATOR_HINT_DELAY_MS = 66 # int, used in code, not QSS # Theme-switch screenshot cross-fade duration (int ms, used in code). THEME_FADE_MS = 250 -- 2.54.0 From 7b709fcb3f5eae97011364599d0279a46e34e35d Mon Sep 17 00:00:00 2001 From: Dawn Date: Wed, 26 Aug 2026 14:50:52 +0200 Subject: [PATCH 2/2] style: check QPushButton height --- src/aare/gui/styles.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/aare/gui/styles.py b/src/aare/gui/styles.py index 3543ce20..618f9a81 100644 --- a/src/aare/gui/styles.py +++ b/src/aare/gui/styles.py @@ -1342,7 +1342,7 @@ def _sunset_stylesheet() -> str: background-color: $dark_elevated; border: 1px solid $dark_border_faint; min-height: 16px; - max-height: 16px; + max-height: 24px; padding-top: 1px; padding-bottom: 1px; } -- 2.54.0