From 0ab1e956908123984fcb2b00bcca8cd6a4631b8e Mon Sep 17 00:00:00 2001 From: Gregory Wells Date: Mon, 6 Apr 2026 18:15:07 -0400 Subject: [PATCH] blur background when changing password --- static/style.css | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/static/style.css b/static/style.css index d233bc7..d7ee7a5 100644 --- a/static/style.css +++ b/static/style.css @@ -43,6 +43,10 @@ button:hover { background-color: var(--primary-hover); } +button:focus { + outline: 2px solid var(--primary-accent); +} + input { padding: 12px; background-color: var(--bg-input); @@ -51,6 +55,10 @@ input { border-radius: 6px; } +input:focus { + outline: 2px solid var(--primary-accent); +} + input::placeholder { color: var(--text-muted); } @@ -74,8 +82,9 @@ input::placeholder { height: 100%; z-index: 9999; /* higher = on top */ - background-color: black; - opacity: 10%; + backdrop-filter: blur(4px); + background-color: rgba(0, 0, 0, 0.3); + pointer-events: all; } .dialouge_title {