I am using SPA with Kendo grid. Can I apply different select color for different grid? I tried to put the below style in my sub page. But it will override my hosting page as well. Thanks.
<style>
.k-grid .k-state-selected {
background-color: #cbf1e3 !important;
color: #000000;
}
.k-grid .k-alt.k-state-selected {
background-color: #cbf1e3 !important;
color: #000000;
}
</style>