From a2feb37dceac0595b8936c6821ed78a97d478834 Mon Sep 17 00:00:00 2001 From: Lephe Date: Mon, 20 Jul 2020 15:16:23 +0200 Subject: [PATCH] theme: bring back the form focus border Removed somehow accidentally in 04fb322. --- app/static/css/form.css | 1 + app/static/css/theme.css | 1 + 2 files changed, 2 insertions(+) diff --git a/app/static/css/form.css b/app/static/css/form.css index 8fe0db7..262f9b4 100644 --- a/app/static/css/form.css +++ b/app/static/css/form.css @@ -42,6 +42,7 @@ .form input[type='search']:focus, .form textarea:focus { border-color: var(--border-focused); + box-shadow: 0 0 0 3px var(--shadow-focused); } .form textarea { diff --git a/app/static/css/theme.css b/app/static/css/theme.css index 4565dfd..5d54a32 100644 --- a/app/static/css/theme.css +++ b/app/static/css/theme.css @@ -30,6 +30,7 @@ --text: #000000; --border: 1px solid #c8c8c8; --border-focused: #7cade0; + --shadow-focused: rgba(87, 143, 228, 0.5); } .editor button {