@vertigis/react-ui 11.32.1 → 11.32.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/styles/createTheme.js +5 -3
package/package.json
CHANGED
package/styles/createTheme.js
CHANGED
|
@@ -483,10 +483,12 @@ function getOverrides(theme) {
|
|
|
483
483
|
borderColor: blue.A100,
|
|
484
484
|
boxShadow: "none",
|
|
485
485
|
},
|
|
486
|
-
"&.Mui-error": {
|
|
486
|
+
"&.Mui-error, &.Mui-error.Mui-focused": {
|
|
487
487
|
backgroundColor: "transparent",
|
|
488
|
-
|
|
489
|
-
|
|
488
|
+
borderWidth: "2px",
|
|
489
|
+
borderColor: palette.error.main,
|
|
490
|
+
boxSizing: "border-box",
|
|
491
|
+
boxShadow: `0 0 0 1px ${isDarkMode ? palette.common.white : "transparent"} inset, 0 0 0 1px ${isDarkMode ? palette.common.white : "transparent"}`,
|
|
490
492
|
},
|
|
491
493
|
"&.Mui-disabled": {
|
|
492
494
|
borderColor: palette.grey[300],
|