Merge pull request #32813 from intelliking/fix/issue-32804

fix: Parameter field input data is obscured with dark mode on
This commit is contained in:
Andre Wanlin
2026-02-21 11:52:39 -06:00
committed by GitHub
2 changed files with 15 additions and 0 deletions
@@ -173,6 +173,16 @@ const useStyles = makeStyles(theme => ({
{
color: theme.palette.warning.dark,
},
[`& input[type=text],
& input[type=password],
& input[type=email],
& input[type=number],
& textarea,
& select`]: {
backgroundColor: theme.palette.background.paper,
color: theme.palette.text.primary,
borderColor: theme.palette.divider,
},
},
},
}));