From 4e04ca43f123ec6538605567e1ff948840227f53 Mon Sep 17 00:00:00 2001 From: Chris Chudzicki Date: Wed, 18 Sep 2024 11:38:47 -0400 Subject: [PATCH] fix adornment color --- frontends/ol-components/src/components/Input/Input.tsx | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/frontends/ol-components/src/components/Input/Input.tsx b/frontends/ol-components/src/components/Input/Input.tsx index a8492e8bb5..f48316f348 100644 --- a/frontends/ol-components/src/components/Input/Input.tsx +++ b/frontends/ol-components/src/components/Input/Input.tsx @@ -200,6 +200,16 @@ const AdornmentButtonStyled = styled("button")(({ theme }) => ({ ":hover": { background: "rgba(0, 0, 0, 0.06)", }, + color: theme.custom.colors.silverGray, + ".MuiInputBase-root:hover &": { + color: "inherit", + }, + ".MuiInputBase-root.Mui-focused &": { + color: "inherit", + }, + ".MuiInputBase-root.Mui-disabled &": { + color: "inherit", + }, height: "100%", }))