How to set colour for selectOneMenu in primefaces ?
<p:selectOneMenu id="col" value="#{projectsController.selected.listColor}">
<f:selectItem itemLabel="Activity" itemValue="1" class="redBackGroundColor"/>
<f:selectItem itemLabel="Activity1" itemValue="2" class="blueBackGroundColor"/>
<f:selectItem itemLabel="Activity2" itemValue="3" class="greenBackGroundColor"/>
</p:selectOneMenu>
And here is my css
.redBackGroundColor{
background-color:red;
}
(and ofcourse for blue and green..) But it doesnt affect behavior of primeface.