Closed
Description
Referencing this issue #1747
Working as intended:
::slotted(::hover){ color: red; }
Not working:
::slotted(::placeholder){ color: red; }
From the issue I am referencing, it seems like it is supposed to not work in both scenarios, as option 3 was chosen to be allowed and option 2 was not. So basically, ::slotted()::hover should work but ::slotted(::hover) should not. At least, this was my interpretation of that issue.
Could someone give some clarification on what should work and what should not, and perhaps why in my case the ::placeholder selector within ::slotted does not work?