Dropdown filter icon
Hello,
I have been struggling with setting a color on the dropdown widgets filter icon:

I found this support article that shows how to change the fonts and such for the dropdown list.
But when I try to use similar CSS to set the icon color, it doesn't work.
ptcs-list::part(item-value) {
font-family:'Roboto','Noto Sans CJK', sans-serif;
font-weight:bold;
background-color: red;
}The above CSS sets the background color of the "item-value" part of the ptcs-list element.
However when I try:
ptcs-list::part(icon) {
color: red;
}It doesn't set the icon to red.
I also tried:
[part~="icon"] {
color: red;
}This also didn't work.
I have also tried stepping down from the "first" element with something like this:
div > div > ptcs-textfield > div > div > ptcs-icon {
color: red;
}But this also hasn't worked...
Any pointers on how to "figure" this out would be greatly appreciated.
Thanks,
Jens


