sag_components 1.0.231 → 1.0.232
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.
|
@@ -86,15 +86,16 @@ var Datepicker = function Datepicker(_ref) {
|
|
|
86
86
|
},
|
|
87
87
|
|
|
88
88
|
"&:hover .MuiOutlinedInput-notchedOutline": {
|
|
89
|
-
borderColor: disabled ? "#E7E7E7" : ""
|
|
89
|
+
borderColor: disabled ? "#E7E7E7" : labelColor // "#757575",
|
|
90
90
|
//color: labelColor,
|
|
91
91
|
},
|
|
92
92
|
|
|
93
93
|
"&.Mui-focused .MuiOutlinedInput-notchedOutline": {
|
|
94
|
-
|
|
94
|
+
borderColor: disabled ? "#E7E7E7" : labelColor
|
|
95
95
|
//color: labelColor,
|
|
96
96
|
}
|
|
97
97
|
},
|
|
98
|
+
|
|
98
99
|
"& .MuiInputLabel-outlined:not(.MuiInputLabel-shrink)": {
|
|
99
100
|
// Default transform is "translate(14px, 20px) scale(1)""
|
|
100
101
|
// This lines up the label with the initial cursor position in the input
|
|
@@ -126,10 +126,10 @@ var Dropdown = function Dropdown(_ref) {
|
|
|
126
126
|
borderColor: "#E7E7E7"
|
|
127
127
|
},
|
|
128
128
|
"&:hover .MuiOutlinedInput-notchedOutline": {
|
|
129
|
-
borderColor: disabled ? "#E7E7E7" :
|
|
129
|
+
borderColor: disabled ? "#E7E7E7" : labelColor
|
|
130
130
|
},
|
|
131
131
|
"&.Mui-focused .MuiOutlinedInput-notchedOutline": {
|
|
132
|
-
|
|
132
|
+
borderColor: disabled ? "#E7E7E7" : labelColor
|
|
133
133
|
}
|
|
134
134
|
},
|
|
135
135
|
"& .MuiInputLabel-outlined:not(.MuiInputLabel-shrink)": {
|
|
@@ -148,7 +148,7 @@ var Dropdown = function Dropdown(_ref) {
|
|
|
148
148
|
"& .MuiInputLabel-shrink": {
|
|
149
149
|
marginLeft: "1px",
|
|
150
150
|
paddingLeft: "4px",
|
|
151
|
-
paddingRight:
|
|
151
|
+
paddingRight: "6px",
|
|
152
152
|
background: "white"
|
|
153
153
|
}
|
|
154
154
|
};
|