SuggestBox color the items

271 views Asked by At

I want to give the items in my suggestbox a custom background color. Is this possible?

like

item.getElement().getStyle().setBackgroundColor("red");
1

There are 1 answers

0
Tobika On

just add this to your css file to change the background color of an item/selected-item

.gwt-SuggestBoxPopup .item {
    background: red !important;
}
.gwt-SuggestBoxPopup .item-selected {
    background: black !important;
}

look here for detailed information