0

Flex is so tricky to style.

I have a combobox, when I arrow up and down over a select it has a background color, how do I change this color. This should be easy.

CafeHey
  • 5,699
  • 19
  • 82
  • 145

1 Answers1

4

Try this style

ComboBox {
   dropdownStyleName: "myComboBoxDropDowns";
}

.myComboBoxDropDowns {
   rollOverColor: #996699;
   selectionColor: #993366;
}
ketan
  • 19,129
  • 42
  • 60
  • 98
Manoj M
  • 267
  • 1
  • 10