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:
@@ -0,0 +1,5 @@
|
||||
---
|
||||
'@backstage/plugin-api-docs': patch
|
||||
---
|
||||
|
||||
Fixed invisible text in parameter input fields when using dark mode in OpenAPI definition pages
|
||||
@@ -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,
|
||||
},
|
||||
},
|
||||
},
|
||||
}));
|
||||
|
||||
Reference in New Issue
Block a user