diff options
| author | Jan-Hendrik Willms <tleilax+studip@gmail.com> | 2026-03-11 08:50:18 +0100 |
|---|---|---|
| committer | Jan-Hendrik Willms <tleilax+studip@gmail.com> | 2026-03-11 09:39:49 +0100 |
| commit | 19fbc3e1c066375ef254336e4f803d63635a1f00 (patch) | |
| tree | ac5e2daabad99fc57b570c870e6ac5bc55838eb0 /resources | |
| parent | 73523777eecef0cd2f00f496766e67871a5aa21c (diff) | |
also highlight table row when using keyboard navigation, fixes #6345
Closes #6345
Merge request studip/studip!4807
Diffstat (limited to 'resources')
| -rw-r--r-- | resources/assets/stylesheets/scss/tables.scss | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/resources/assets/stylesheets/scss/tables.scss b/resources/assets/stylesheets/scss/tables.scss index 9423b50..0b8f68a 100644 --- a/resources/assets/stylesheets/scss/tables.scss +++ b/resources/assets/stylesheets/scss/tables.scss @@ -588,7 +588,7 @@ table.default { } // Hover effect - &:not(.nohover) > tbody:not(.nohover) > tr:not(.nohover):hover > td:not(.nohover) { + &:not(.nohover) > tbody:not(.nohover) > tr:not(.nohover):is(:hover, :focus-within) > td:not(.nohover) { background-color: var(--color--table-header); } |
