fix(form-core): default accessible disabled colors
This commit is contained in:
parent
7da5542ee7
commit
acd9264091
1 changed files with 2 additions and 2 deletions
|
|
@ -626,7 +626,7 @@ const FormControlMixinImplementation = superclass =>
|
||||||
|
|
||||||
:host([disabled]) .form-field__label ::slotted(*),
|
:host([disabled]) .form-field__label ::slotted(*),
|
||||||
:host([disabled]) .form-field__help-text ::slotted(*) {
|
:host([disabled]) .form-field__help-text ::slotted(*) {
|
||||||
color: var(--disabled-text-color, #adadad);
|
color: var(--disabled-text-color, #767676);
|
||||||
}
|
}
|
||||||
|
|
||||||
/***********************
|
/***********************
|
||||||
|
|
@ -644,7 +644,7 @@ const FormControlMixinImplementation = superclass =>
|
||||||
|
|
||||||
/***** {state} :disabled *****/
|
/***** {state} :disabled *****/
|
||||||
:host([disabled]) .input-group ::slotted(slot='input') {
|
:host([disabled]) .input-group ::slotted(slot='input') {
|
||||||
color: var(--disabled-text-color, #adadad);
|
color: var(--disabled-text-color, #767676);
|
||||||
}
|
}
|
||||||
|
|
||||||
/***********************
|
/***********************
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue