FIX: use correct color for inputs (#24616)
This commit is contained in:
parent
178c1f74ae
commit
18a0783643
|
@ -278,7 +278,7 @@ table {
|
||||||
input,
|
input,
|
||||||
select,
|
select,
|
||||||
textarea {
|
textarea {
|
||||||
color: var(--d-input-bg-color--disabled);
|
color: var(--d-input-text-color);
|
||||||
caret-color: currentColor;
|
caret-color: currentColor;
|
||||||
|
|
||||||
&[class*="span"] {
|
&[class*="span"] {
|
||||||
|
@ -289,6 +289,7 @@ textarea {
|
||||||
&[disabled],
|
&[disabled],
|
||||||
&[readonly] {
|
&[readonly] {
|
||||||
cursor: not-allowed;
|
cursor: not-allowed;
|
||||||
|
color: var(--d-input-text-color--disabled);
|
||||||
background-color: var(--d-input-bg-color--disabled);
|
background-color: var(--d-input-bg-color--disabled);
|
||||||
border: var(--d-input-border--disabled);
|
border: var(--d-input-border--disabled);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue