I'm trying to style an input range thumb in a shadow dom. I understand that CSS selectors can't have more than one pseudo element selector, so it seems I'm not allowed to do:
::slotted(input[type=range]::-webkit-slider-thumb) {
background-color: red;
}
Is there an alternative to set a style, or even an property in the input range thumb ?
Thanks,