[NEW] Theming Update: Major Visual Changes in Perspective

I am a huge fan of the theme update, thank you very much!

I did however find one aspect of the theme’s that I don’t really like.
The background color on the selected items dropdown ‘valuePill’
image
image

Is there a straight forward way in the designer to change this color? I could not find an easy way to change this color.

I was able to change the style in the CSS files by locating the relavant style

.ia_dropdown__valuePill {
    border-radius: var(--borderRadius);
    background-color: var(--containerNested);
    overflow: hidden;
}

and adding this to my custom stylesheet to hide it

.ia_dropdown__valuePill {
    background-color: transparent;
}

image

2 Likes