From 7b53498019488ec9343d1f5371ce397aef5bec68 Mon Sep 17 00:00:00 2001 From: Jan-Hendrik Willms Date: Wed, 11 Mar 2026 08:50:18 +0100 Subject: also highlight table row when using keyboard navigation, fixes #6345 Closes #6345 Merge request studip/studip!4807 --- resources/assets/stylesheets/scss/tables.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); } -- cgit v1.0