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 08:50:18 +0100 |
| commit | 7b53498019488ec9343d1f5371ce397aef5bec68 (patch) | |
| tree | ff9f11015552d643cb39e11e82b9a4612e72709b | |
| parent | 182d8ad162dc60f604b4b56241450e2cca568deb (diff) | |
also highlight table row when using keyboard navigation, fixes #6345
Closes #6345
Merge request studip/studip!4807
| -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 b2bc8c9..306f046 100644 --- a/resources/assets/stylesheets/scss/tables.scss +++ b/resources/assets/stylesheets/scss/tables.scss @@ -595,7 +595,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); } |
