One of my tasks involved creating a grid using Kendo, and I wanted to display borders on a grid row when the cursor hovers over it.
I attempted the following code snippet:
.k-grid > table > tbody > tr:hover,
.k-grid-content > table > tbody > tr:hover
{
background-color: transparent;
border:1px solid #000
}
Unfortunately, this approach did not achieve the desired outcome. Is there an alternative method to achieve this effect?