From a708465e3c5b0a4f94e5a1453c3c01e555045b45 Mon Sep 17 00:00:00 2001 From: ForgottenHero Date: Wed, 4 Dec 2024 21:05:50 +1000 Subject: [PATCH 1/2] Update help panel navigation buttons 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 | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/css/80_app.css b/css/80_app.css index 16bafa5dc6..8566029b6e 100644 --- a/css/80_app.css +++ b/css/80_app.css @@ -4179,11 +4179,19 @@ 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%; +} + +.ideditor .help-pane .nav::after { + content: ''; + display: table; + clear: both; } .help-pane .nav a { - float: left; - width: 50%; + flex: 0 0 50%; text-align: center; } @@ -4197,7 +4205,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; } From 69e1fa33adb31a083c250acfedd550a406ecd465 Mon Sep 17 00:00:00 2001 From: ForgottenHero Date: Thu, 5 Dec 2024 12:24:43 +1000 Subject: [PATCH 2/2] Removed redundant clearfix hack --- css/80_app.css | 6 ------ 1 file changed, 6 deletions(-) diff --git a/css/80_app.css b/css/80_app.css index 8566029b6e..e4208e0d9c 100644 --- a/css/80_app.css +++ b/css/80_app.css @@ -4184,12 +4184,6 @@ li.issue-fix-item button:not(.actionable) .fix-icon { width: 100%; } -.ideditor .help-pane .nav::after { - content: ''; - display: table; - clear: both; -} - .help-pane .nav a { flex: 0 0 50%; text-align: center;