Skip to content

Commit

Permalink
fix(grid): remove separate hover styling on detail row container
Browse files Browse the repository at this point in the history
  • Loading branch information
epetrow authored and joneff committed Jan 18, 2022
1 parent 3c1aa5c commit 1be1790
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions packages/bootstrap/scss/grid/_theme.scss
Expand Up @@ -18,8 +18,8 @@
}

// Hover state
tbody tr:hover,
tbody tr.k-state-hover {
tbody tr:not(.k-detail-row):hover,
tbody tr:not(.k-detail-row).k-state-hover {
color: $grid-hovered-text;
background-color: $grid-hovered-bg;
}
Expand Down
4 changes: 2 additions & 2 deletions packages/default/scss/grid/_theme.scss
Expand Up @@ -73,8 +73,8 @@
}

// Hover state
tbody tr:hover,
tbody tr.k-state-hover {
tbody tr:not(.k-detail-row):hover,
tbody tr:not(.k-detail-row).k-state-hover {
color: $grid-hovered-text;
background-color: $grid-hovered-bg;
}
Expand Down
4 changes: 2 additions & 2 deletions packages/material/scss/grid/_theme.scss
Expand Up @@ -18,8 +18,8 @@

// Hover, Focused state
table {
tr:hover,
tr.k-state-hover,
tr:not(.k-detail-row):hover,
tr:not(.k-detail-row).k-state-hover,
td.k-state-focused,
th.k-state-focused,
th:focus,
Expand Down

0 comments on commit 1be1790

Please sign in to comment.