aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJan-Hendrik Willms <tleilax+studip@gmail.com>2026-03-11 08:50:18 +0100
committerJan-Hendrik Willms <tleilax+studip@gmail.com>2026-03-11 09:39:49 +0100
commit19fbc3e1c066375ef254336e4f803d63635a1f00 (patch)
treeac5e2daabad99fc57b570c870e6ac5bc55838eb0
parent73523777eecef0cd2f00f496766e67871a5aa21c (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.scss2
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);
}