fix(form-core): fixed css selector syntax for disabled [slot=input]
This commit is contained in:
parent
239cce3bf7
commit
11ec31c62e
2 changed files with 6 additions and 1 deletions
5
.changeset/lovely-tables-scream.md
Normal file
5
.changeset/lovely-tables-scream.md
Normal file
|
|
@ -0,0 +1,5 @@
|
||||||
|
---
|
||||||
|
'@lion/form-core': patch
|
||||||
|
---
|
||||||
|
|
||||||
|
fixed css selector syntax for disabled [slot=input]'
|
||||||
|
|
@ -684,7 +684,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, #767676);
|
color: var(--disabled-text-color, #767676);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue