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: red} but the color of selected item is not changing. It is set to default orange only. But the same code is working for grid and list view.
How can i able to do that.
Regards, Sri
KendoUI defines background not just as a
background-color: XYZ;
but usingbackground-image: none, -webkit-linear-gradient(top, #ffc0cb 0px, #ffc0cb 100%);
too So, start overwriting this definition sayingbackground-image: none;
The following CSS should work for date(time)picker and the dropdownlist:
Here is a live demo: http://jsbin.com/efozol/5/edit