When using an Ajax Combobox, I encountered a problem with the background color changing on hover. The combobox is bound to a datasource with specific conditions for defining the background color, but upon hovering over a list item, the color changes. I want the background color to remain based on the initial conditions without any fixed colors. Can anyone provide assistance on how to resolve this issue?
Below is the customized CSS:
#ddlAdminTaskListNewLateralName li {
/*background-color: #fff !important;*/
color: #084B8A !important;
padding: 5px 5px 5px 5px !important;
}
#ddlAdminTaskListNewLateralName li:hover {
}