From fa954b9821d9c2c7608f03f24b6e3ad8bfc1e5a0 Mon Sep 17 00:00:00 2001 From: maskar Date: Sat, 28 Mar 2026 11:00:36 -0500 Subject: [PATCH] fix(ui): remove backdrop blur from dialog overlays The blur effect can be distracting when monitoring terminal output behind a dialog. Remove it while keeping the dark overlay for focus. --- src/styles.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/styles.css b/src/styles.css index 03236683..d47e9992 100644 --- a/src/styles.css +++ b/src/styles.css @@ -668,7 +668,7 @@ textarea::placeholder { .dialog-overlay { animation: fadeIn 0.16s ease; background: color-mix(in srgb, #000 44%, transparent); - backdrop-filter: blur(6px) saturate(1.15); + backdrop-filter: saturate(1.15); } .dialog-overlay > form,