From 4e55d8e0fa396b03194d353e138d2e08659e0a4e Mon Sep 17 00:00:00 2001 From: Mike Burgess Date: Thu, 2 Mar 2023 16:06:57 +0000 Subject: [PATCH] Fix dashboard input theming in Steampipe Cloud dark mode. Fixes #3181. --- .../src/components/dashboards/inputs/TextInput/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/dashboard/src/components/dashboards/inputs/TextInput/index.tsx b/ui/dashboard/src/components/dashboards/inputs/TextInput/index.tsx index 5be311735..711b485ce 100644 --- a/ui/dashboard/src/components/dashboards/inputs/TextInput/index.tsx +++ b/ui/dashboard/src/components/dashboards/inputs/TextInput/index.tsx @@ -65,7 +65,7 @@ const TextInput = (props: InputProps) => { type="text" name={props.name} id={props.name} - className="flex-1 block w-full bg-background-panel rounded-md border border-black-scale-3 pr-8 overflow-x-auto text-sm md:text-base disabled:bg-black-scale-1 focus:ring-0" + className="flex-1 block w-full bg-dashboard-panel rounded-md border border-black-scale-3 pr-8 overflow-x-auto text-sm md:text-base disabled:bg-black-scale-1 focus:ring-0" onChange={updateValue} onKeyPress={(e) => { if (e.key !== "Enter") {