From 3ff2685c1dec5ed5765cb5cc5307b06a6d389792 Mon Sep 17 00:00:00 2001 From: Jacob Sommer Date: Mon, 11 Nov 2024 15:33:57 -0800 Subject: [PATCH 1/2] force blue border color on focus --- site/src/style/theme.scss | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/site/src/style/theme.scss b/site/src/style/theme.scss index c822925d..def312fa 100644 --- a/site/src/style/theme.scss +++ b/site/src/style/theme.scss @@ -55,6 +55,10 @@ border-color: var(--overlay3); } + .form-control:focus { + border-color: #86bbfb !important; + } + .custom-control-label::before { background-color: var(--overlay3); } From 2fc61a9a76fed9885314150a28de701ee752c1c6 Mon Sep 17 00:00:00 2001 From: Jacob Sommer Date: Mon, 11 Nov 2024 15:50:30 -0800 Subject: [PATCH 2/2] fix checkbox border-color --- site/src/App.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/site/src/App.scss b/site/src/App.scss index a03eb42c..5c2ad85a 100644 --- a/site/src/App.scss +++ b/site/src/App.scss @@ -137,7 +137,7 @@ button { background-position: 50%; background-repeat: no-repeat; background-size: contain; - border: 1px solid #8888; + border: 1px solid var(--overlay3); border-radius: 0.25rem; width: 1em; height: 1em;