[BUG-1535] Perspective cannot change text colour of Dropdown component text

This is the evildoer: image
should kinda be defaulted by ignition, as the color assigned there serves no purpose, (also what a weird class name)

but can be fixed: change this into theme.css

.ia_dropdown__valuePill__value {
color: unset;
}

or inject it into a styleclass

}.ia_dropdown__valuePill__value {
color: unset;
}{

image

for the dropdown shape you can do the same for

.ia_dropdown__expandIcon {
 fill: unset;
}
4 Likes