From ba64b9ddb71e4182a6048fecd3b87207d3cb2099 Mon Sep 17 00:00:00 2001 From: byseif21 Date: Fri, 23 Jan 2026 17:00:31 +0200 Subject: [PATCH 1/3] fix: stuck hover on focus for header and restart button (@byseif21) --- frontend/src/styles/nav.scss | 1 + frontend/src/styles/test.scss | 12 +++++------- 2 files changed, 6 insertions(+), 7 deletions(-) diff --git a/frontend/src/styles/nav.scss b/frontend/src/styles/nav.scss index 91c58ceb8ceb..283f1385fcc2 100644 --- a/frontend/src/styles/nav.scss +++ b/frontend/src/styles/nav.scss @@ -411,6 +411,7 @@ header { } //top focus &.focus { + pointer-events: none !important; color: var(--sub-color) !important; .notificationBubble { diff --git a/frontend/src/styles/test.scss b/frontend/src/styles/test.scss index d0064f2c7c24..0e7d3cb7946a 100644 --- a/frontend/src/styles/test.scss +++ b/frontend/src/styles/test.scss @@ -1541,14 +1541,12 @@ } main.focus .pageTest { - #testModesNotice { - opacity: 0 !important; - } - #testConfig { - opacity: 0 !important; - } - #mobileTestConfigButton { + #testModesNotice, + #testConfig, + #mobileTestConfigButton, + #restartTestButton { opacity: 0 !important; + pointer-events: none !important; } } From 584425ed9fec77bfd98a7d0048599797cdb91bed Mon Sep 17 00:00:00 2001 From: byseif21 Date: Fri, 27 Feb 2026 22:02:42 +0200 Subject: [PATCH 2/3] cleanup --- frontend/src/styles/test.scss | 1 - 1 file changed, 1 deletion(-) diff --git a/frontend/src/styles/test.scss b/frontend/src/styles/test.scss index 0e7d3cb7946a..ae1c6ce5956a 100644 --- a/frontend/src/styles/test.scss +++ b/frontend/src/styles/test.scss @@ -1546,7 +1546,6 @@ main.focus .pageTest { #mobileTestConfigButton, #restartTestButton { opacity: 0 !important; - pointer-events: none !important; } } From d867a8f857bf81597db10cc6e5211020caef75e0 Mon Sep 17 00:00:00 2001 From: byseif21 Date: Tue, 3 Mar 2026 16:34:14 +0200 Subject: [PATCH 3/3] fix keyboard nav --- frontend/src/styles/test.scss | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/frontend/src/styles/test.scss b/frontend/src/styles/test.scss index 59cc8ed56d69..3d75fb78d1b9 100644 --- a/frontend/src/styles/test.scss +++ b/frontend/src/styles/test.scss @@ -1604,9 +1604,14 @@ main.focus .pageTest { #testModesNotice, #testConfig, - #mobileTestConfigButton, + #mobileTestConfigButton { + opacity: 0 !important; + } #restartTestButton { opacity: 0 !important; + &:focus-visible { + opacity: 1 !important; + } } }