简体   繁体   中英

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

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?

在此处输入图片说明

Thanks, Adarsh

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;
}

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM