ehscan-react-components 0.1.20 → 0.1.21
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/dist/style/input.css +4 -3
- package/package.json +1 -1
package/dist/style/input.css
CHANGED
|
@@ -122,7 +122,7 @@ input:-webkit-autofill:active {
|
|
|
122
122
|
|
|
123
123
|
.ext-textarea {
|
|
124
124
|
font-size: var(--ext-textarea-input-txt-size, 14px);
|
|
125
|
-
background-color: var(--ext-textarea-input-bck-clr,
|
|
125
|
+
background-color: var(--ext-textarea-input-bck-clr, white);
|
|
126
126
|
color: var(--ext-textarea-input-clr, red);
|
|
127
127
|
font-weight: var(--ext-textarea-d-font-weight, 400);
|
|
128
128
|
border-radius: var(--ext-textarea-border-radius, 20px);
|
|
@@ -140,8 +140,8 @@ input:-webkit-autofill:active {
|
|
|
140
140
|
}
|
|
141
141
|
|
|
142
142
|
.ext-textarea:focus{
|
|
143
|
-
background-color: var(--ext-textarea-focus-bck-clr);
|
|
144
|
-
border-radius: var(--ext-textarea-border-radius);
|
|
143
|
+
background-color: var(--ext-textarea-focus-bck-clr, lavender);
|
|
144
|
+
border-radius: var(--ext-textarea-border-radius, 20px);
|
|
145
145
|
}
|
|
146
146
|
|
|
147
147
|
input[type="text"],
|
|
@@ -172,6 +172,7 @@ textarea {
|
|
|
172
172
|
display: flex;
|
|
173
173
|
align-items: center;
|
|
174
174
|
justify-content: center;
|
|
175
|
+
border-radius: var(--ext-textarea-border-radius);
|
|
175
176
|
}
|
|
176
177
|
|
|
177
178
|
.ext-textarea-svg-close:hover{
|