Gwt SuggestBox为项目添加颜色

Gwt SuggestBox为项目添加颜色,gwt,colors,suggestbox,Gwt,Colors,Suggestbox,我想为suggestbox中的项目提供自定义背景色。 这可能吗 像 只需将其添加到css文件中,即可更改项目/选定项目的背景色 .gwt-SuggestBoxPopup .item { background: red !important; } .gwt-SuggestBoxPopup .item-selected { background: black !important; } 查看详细信息查看DefaultSuggestionDisplay以查看所有CSS选择器。 .gw

我想为suggestbox中的项目提供自定义背景色。 这可能吗


只需将其添加到css文件中,即可更改项目/选定项目的背景色

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

查看详细信息

查看
DefaultSuggestionDisplay
以查看所有CSS选择器。
.gwt-SuggestBoxPopup .item {
    background: red !important;
}
.gwt-SuggestBoxPopup .item-selected {
    background: black !important;
}