From bed6427dfc1a5b3e1ebbc529950c9f153ee02118 Mon Sep 17 00:00:00 2001 From: David Kaya Date: Tue, 14 Apr 2026 11:17:23 +0200 Subject: [PATCH] fix: eliminate quick prompt panel flash on show Add animation-fill-mode 'both' to .qp-panel-enter so the from-keyframe (opacity: 0) applies immediately on mount, preventing the single-frame flash of the opaque surface background before the entrance animation begins. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- src/renderer/styles.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/renderer/styles.css b/src/renderer/styles.css index 9ba17ca..b8dce15 100644 --- a/src/renderer/styles.css +++ b/src/renderer/styles.css @@ -762,7 +762,7 @@ html:has(body[data-quickprompt]) { } .qp-panel-enter { - animation: qp-panel-in 0.2s cubic-bezier(0.16, 1, 0.3, 1); + animation: qp-panel-in 0.2s cubic-bezier(0.16, 1, 0.3, 1) both; } /* Response area entrance */