From 6deee62df77e53e642a82f9825850e47179e91cd Mon Sep 17 00:00:00 2001 From: StartAutomating Date: Sat, 26 Oct 2024 00:47:01 +0000 Subject: [PATCH] feat: 4bitcss button styling ( Fixes #96 ) --- css/xcodedark.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/css/xcodedark.css b/css/xcodedark.css index 0b0d19999..bdf2af45c 100644 --- a/css/xcodedark.css +++ b/css/xcodedark.css @@ -173,7 +173,7 @@ a, a:visited, a:hover { color: var(--cyan); } background-color: var(--selectionBackground); } -form input[type="text"], form input[type="checkbox"], input[type="button"], textarea, select, option { +form input[type="text"], form input[type="checkbox"], input[type="button"], button, textarea, select, option { color: var(--foreground); background-color: var(--background); } @@ -183,7 +183,7 @@ option { background: var(--background); } -form input[type="text"], textarea, select { +form input[type="text"], textarea, select, button { border : 1px solid var(--foreground); outline: 1px solid var(--foreground); }