Skip to content

Commit

Permalink
fix(grid): remove highlighting of header row in detail grid
Browse files Browse the repository at this point in the history
  • Loading branch information
NikoPenev21 authored and TeyaVes committed Jul 8, 2022
1 parent 36e4b25 commit e992dfe
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions packages/bootstrap/scss/grid/_theme.scss
Expand Up @@ -18,9 +18,9 @@
}

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

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

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

0 comments on commit e992dfe

Please sign in to comment.