在我的应用程序中,我正在Web视图页面中使用JSF-Richfaces。要通过手动输入选择项进行搜索,我必须使用rich:select标记。
<h:outputText value="Product" />
<rich:select defaultLabel="start typing for select"
value="#{accountSearchController.searchAccDto.accountProduct}" converter="#{productConverter}">
<f:selectItems value="#{accountSearchController.allProducts}" var="product" itemLabel="#{product.name}"/>
</rich:select>
下拉菜单如下:
我想更改放置项目的背景颜色,因为它看起来像深绿色的黑色。如何更改下拉菜单的样式。