SuggestBox color the items

296 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 best solutions below

0
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