From f4c1479d279b4ef6f3aad90a8739878aeba7cc67 Mon Sep 17 00:00:00 2001 From: Conrad Zelck <git@simpel.cc> Date: Sat, 7 Oct 2023 19:26:44 +0200 Subject: [PATCH] style: cleanup border/outline of button/input Signed-off-by: Conrad Zelck <git@simpel.cc> --- style.css | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/style.css b/style.css index ce8042a..33bf5a9 100644 --- a/style.css +++ b/style.css @@ -217,15 +217,14 @@ details[open] > #details { } input[type=checkbox]:focus { - outline: 1.2px solid white; + /* reduce default offset as it seems a very big gap */ outline-offset: 1px; } button, input, select { - border: 2px solid; + border: 2px solid white; -webkit-border-radius: 5px; border-radius: 5px; - border-color: white; } input[type="file"] { -- GitLab