fix(form-core): fixed css selector syntax for disabled [slot=input]

This commit is contained in:
Thijs Louisse 2021-04-17 13:37:21 +02:00
parent 239cce3bf7
commit 11ec31c62e
2 changed files with 6 additions and 1 deletions

View file

@ -0,0 +1,5 @@
---
'@lion/form-core': patch
---
fixed css selector syntax for disabled [slot=input]'

View file

@ -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);
} }