SuggestBox为项目着色

时间:2014-12-15 12:30:36

标签: gwt colors suggestbox

我想给我的建议箱中的项目提供自定义背景颜色。 这可能吗?

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

1 个答案:

答案 0 :(得分:0)

只需将其添加到您的css文件即可更改项目/所选项目的背景颜色

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

查看here了解详细信息