diff --git a/docs/en_US/release_notes_6_10.rst b/docs/en_US/release_notes_6_10.rst index 78acf2753..875d16c42 100644 --- a/docs/en_US/release_notes_6_10.rst +++ b/docs/en_US/release_notes_6_10.rst @@ -21,6 +21,7 @@ Bug fixes ********* | `Issue #7002 `_ - Added the ability to detect and warn users about bidirectional Unicode characters. + | `Issue #7347 `_ - Ensure that when Authentication buttons are disabled their text is visible in the Dark and High contrast theme. | `Issue #7368 `_ - Ensure that unwanted APIs should not be getting called for BigAnimal. | `Issue #7372 `_ - Tell Docker to always pull the latest base images when building containers. | `Issue #7373 `_ - Fixed an issue with geometry window zoom mouse scroll not working. diff --git a/web/pgadmin/static/js/components/Buttons.jsx b/web/pgadmin/static/js/components/Buttons.jsx index eeafc7739..c15e313d5 100644 --- a/web/pgadmin/static/js/components/Buttons.jsx +++ b/web/pgadmin/static/js/components/Buttons.jsx @@ -18,7 +18,7 @@ const useStyles = makeStyles((theme)=>({ primaryButton: { border: '1px solid '+theme.palette.primary.main, '&.Mui-disabled': { - color: theme.palette.primary.contrastText, + color: [theme.palette.primary.contrastText,'!important'], backgroundColor: theme.palette.primary.disabledMain, }, '&:hover': { @@ -32,7 +32,7 @@ const useStyles = makeStyles((theme)=>({ border: '1px solid '+theme.palette.default.borderColor, whiteSpace: 'nowrap', '&.Mui-disabled': { - color: theme.palette.default.disabledContrastText, + color: [theme.palette.default.disabledContrastText, '!important'], borderColor: theme.palette.default.disabledBorderColor }, '&:hover': {