Kendo ui picker css issue

前端 未结 2 1854
耶瑟儿~
耶瑟儿~ 2021-01-23 09:09

I am using kendo ui dropdown list and some other pickers. I want to style the selected item background color.

I had tried .k-dropdown .k-state-selected{ background-color

2条回答
  •  抹茶落季
    2021-01-23 09:40

    The following CSS should work for date(time)picker and the dropdownlist:

    .k-widget .k-state-selected,
    .k-list .k-state-selected
    { 
      background: red;
    }
    

    Here is a live demo: http://jsbin.com/efozol/5/edit

提交回复
热议问题