views:

214

answers:

1

When I set style color it changes both the text color for the selected item/component label and the text in the dropdown menu.

color Type: uint Format: Color CSS Inheritance: yes Color of text in the component, including the component label. The default value is 0x0B333C.

I would really like the label to be white and the text to be black. Is it possible?

A: 

Found the solution :)

ComboBox{ iconColor: #FFFFFF; textInputStyleName: cboHeaderColor;

}

.cboHeaderColor{ color: #FFFFFF; }

That did the trick :)

Tinelise