FIX: use correct color for inputs (#24616)

This commit is contained in:
Kris 2023-11-28 16:21:36 -05:00 committed by GitHub
parent 178c1f74ae
commit 18a0783643
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -278,7 +278,7 @@ table {
input,
select,
textarea {
color: var(--d-input-bg-color--disabled);
color: var(--d-input-text-color);
caret-color: currentColor;
&[class*="span"] {
@ -289,6 +289,7 @@ textarea {
&[disabled],
&[readonly] {
cursor: not-allowed;
color: var(--d-input-text-color--disabled);
background-color: var(--d-input-bg-color--disabled);
border: var(--d-input-border--disabled);
}