我想为我的建议框中的项目提供自定义背景颜色。这可能吗?
喜欢
item.getElement().getStyle().setBackgroundColor("red");
我想为我的建议框中的项目提供自定义背景颜色。这可能吗?
喜欢
item.getElement().getStyle().setBackgroundColor("red");
只需将其添加到您的 css 文件中即可更改项目/选定项目的背景颜色
.gwt-SuggestBoxPopup .item {
background: red !important;
}
.gwt-SuggestBoxPopup .item-selected {
background: black !important;
}
在这里查看详细信息