From 029398cad47a736bb5bd2aefc9bd1ba93c76f3e3 Mon Sep 17 00:00:00 2001 From: ygg2 Date: Fri, 26 Jul 2024 16:42:41 -0400 Subject: [PATCH 1/2] update focus rule since typebox isn't textarea feel free to change the theme focus colors, didn't know what to pick and browsers vary --- webpage/style.css | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/webpage/style.css b/webpage/style.css index eacb1ad..adca835 100644 --- a/webpage/style.css +++ b/webpage/style.css @@ -623,7 +623,9 @@ textarea { height: 1.5in; font-size: .75rem; } -textarea:focus-visible { +input[type=text]:focus-visible, +input[type=password]:focus-visible, +#typebox:focus-visible { outline: 2px solid var(--focus); } .channels { From afb14c22d514fc1163305e3bcf71516656791364 Mon Sep 17 00:00:00 2001 From: ygg2 Date: Fri, 26 Jul 2024 16:43:32 -0400 Subject: [PATCH 2/2] wait there's still a textarea (bio) --- webpage/style.css | 1 + 1 file changed, 1 insertion(+) diff --git a/webpage/style.css b/webpage/style.css index adca835..8abf1b0 100644 --- a/webpage/style.css +++ b/webpage/style.css @@ -625,6 +625,7 @@ textarea { } input[type=text]:focus-visible, input[type=password]:focus-visible, +textarea:focus-visible, #typebox:focus-visible { outline: 2px solid var(--focus); }