Skip to content

Commit

Permalink
fix adornment color (#1578)
Browse files Browse the repository at this point in the history
  • Loading branch information
ChristopherChudzicki authored Sep 18, 2024
1 parent ad1ef03 commit a6e0e9c
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions frontends/ol-components/src/components/Input/Input.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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%",
}))

Expand Down

0 comments on commit a6e0e9c

Please sign in to comment.