Color change on a label

then just drop the [datalabel] bit? you dont even need stylesheets then, the basic classes should work too then

3 Likes

image
image

This did not work.
Do you know what is wrong?

The color is still black.
I tried to set it so many ways to green or red, just something to detect it changed at all.

I want the text black.
I want the background of the pills and the option menu to be changed.
I tried white, green, and reds to just verify I can change it for now.

I don't know what you mean the basic classes should work.

I have not seen anything to color pill backgrounds or the options background.
I thought for sure this would work:
image

You can not apply css injections inside the properties, this only works in styleclasses.

I think this is what you want

.psc-smartsheetsdropdowns .ia_dropdown__valuePill{	
	background-color:red;
}
.ia_dropdown__optionsModal:has(.psc-smartsheetsdropdowns){	
	background-color:red;
}

to be put in the stylesheet.css

3 Likes

Thank you Victor!

It works.

1 Like

How do you handle the HTML when it has inherited from a div class?

The "no results found" is also colored different than I wanted I found out.
image

.ia_dropdown__optionsModal is already assigned the correct coloring when the style is correct, so is the inheritance obstructing coloring?

image

.ia_dropdown__optionsModal inherited from
div class="ia_componentModal component-modal-large-viewport component-modal-below hide-arrow iaDropdownCommon_options_modal ia_dropdown__optionsModal"


image
Or maybe it is here.