From 04fd2ba6f4ca7d0ac7e5f0ca83ac7a1a765e2d20 Mon Sep 17 00:00:00 2001 From: ForgottenHero Date: Fri, 6 Dec 2024 23:51:11 +1000 Subject: [PATCH] Update help panel navigation buttons (#10581) Fixes #105073 where the empty nav button for 'next' was overlapping the keyboard shortcuts button when the user was currently view the Quality Assurance page. --- css/80_app.css | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/css/80_app.css b/css/80_app.css index 16bafa5dc..e4208e0d9 100644 --- a/css/80_app.css +++ b/css/80_app.css @@ -4179,11 +4179,13 @@ li.issue-fix-item button:not(.actionable) .fix-icon { .help-pane .nav { position: relative; padding-bottom: 30px; + display: flex; + justify-content: space-between; + width: 100%; } .help-pane .nav a { - float: left; - width: 50%; + flex: 0 0 50%; text-align: center; } @@ -4197,7 +4199,7 @@ li.issue-fix-item button:not(.actionable) .fix-icon { } .help-pane .nav a:only-child { - width: 100%; + flex: 0 0 100%; border-radius: 4px; }