From 651bb549d3495974c4bc43d7d16cd723b8e65051 Mon Sep 17 00:00:00 2001 From: James Brundage <+@noreply.github.com> Date: Fri, 25 Oct 2024 17:44:48 -0700 Subject: [PATCH] feat: 4bitcss button styling ( Fixes #96 ) --- Commands/Export-4BitCSS.ps1 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Commands/Export-4BitCSS.ps1 b/Commands/Export-4BitCSS.ps1 index fd9c1cd7d..32aebf8c7 100644 --- a/Commands/Export-4BitCSS.ps1 +++ b/Commands/Export-4BitCSS.ps1 @@ -547,7 +547,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); } @@ -557,7 +557,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); }