Kendo grid - on hover color change not working in Google chrome alone

3.6k Views Asked by At

In my kendo grid, i have implemented on hover color change by including the below css code which was suggested in one of the telerik forums.

.k-grid table tr:hover {
    background :rgb(107, 188, 242) !important;
    cursor: pointer !important;
}

This works perfectly fine in IE browsers, But in google chrome the color partially gets retained when i hover from one row to another(attached image). What mite have been possibly gone wrong here?

enter image description here

Thanks, Adarsh

1

There are 1 best solutions below

0
On BEST ANSWER

Interestingly, when I apply a hover to the td like below, it worked fine!

.k-grid table tr:hover td {
    background :rgb(107, 188, 242) !important;
    cursor: pointer !important;
}