我正在尝试使用Chosen plugin
我正在使用select元素选项。

我使用它来按国家/地区名称显示时区名称。
国家名称作为optgroup标签,时区名称作为选项

我的问题:


如何也使搜索在optgroup标签上起作用(不仅限于选项)
如何更改选项的悬停背景颜色?


谢谢。

最佳答案

您可以按以下方式在selected.css中更新突出显示的类:

.chosen-container .chosen-results li.highlighted {
  background-color: #F26655;
background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(20%, #F26655), color-stop(90%, #2a62bc));
  background-image: -webkit-linear-gradient(#F26655 20%, #F26655 90%);
  background-image: -moz-linear-gradient(#F26655 20%, #F26655 90%);
  background-image: -o-linear-gradient(#F26655 20%, #F26655 90%);
  background-image: linear-gradient(#F26655 20%, #F26655 90%);
  color: #fff;
}


在我的版本中,该课程位于第174行。
例如,#F26655是您想要的颜色。

09-11 18:18