Merge pull request #2447 from bluewave-labs/fix/autocomplete-style

fix: move style to global theme
This commit is contained in:
Alexander Holliday
2025-06-14 11:41:07 +08:00
committed by GitHub
2 changed files with 28 additions and 21 deletions

View File

@@ -102,27 +102,7 @@ const Search = ({
...(endAdornment && { endAdornment: endAdornment }),
},
}}
sx={{
"& fieldset": {
borderColor: theme.palette.primary.lowContrast,
borderRadius: theme.shape.borderRadius,
},
"& .MuiOutlinedInput-root:hover:not(:has(input:focus)):not(:has(textarea:focus)) fieldset":
{
borderColor: theme.palette.primary.lowContrast,
},
"& .MuiOutlinedInput-root": {
paddingY: 0,
},
"& .MuiAutocomplete-tag": {
// CAIO_REVIEW
color: theme.palette.primary.contrastText,
backgroundColor: theme.palette.primary.lowContrast,
},
"& .MuiChip-deleteIcon": {
color: theme.palette.primary.contrastText, // CAIO_REVIEW
},
}}
sx={{}}
/>
{error && (
<Typography

View File

@@ -380,6 +380,33 @@ const baseTheme = (palette) => ({
},
},
},
MuiAutocomplete: {
styleOverrides: {
root: ({ theme }) => ({
"& .MuiOutlinedInput-root": {
paddingTop: 0,
paddingBottom: 0,
},
"& fieldset": {
borderColor: theme.palette.primary.lowContrast,
borderRadius: theme.shape.borderRadius,
},
"& .MuiOutlinedInput-root:hover:not(:has(input:focus)):not(:has(textarea:focus)) fieldset":
{
borderColor: theme.palette.primary.lowContrast,
},
"& .MuiAutocomplete-tag": {
color: theme.palette.primary.contrastText,
backgroundColor: theme.palette.primary.lowContrast,
},
"& .MuiChip-deleteIcon": {
color: theme.palette.primary.contrastText, // CAIO_REVIEW
},
}),
},
},
MuiTab: {
styleOverrides: {
root: ({ theme }) => ({