From f42dd1b529fb827144843c11e377810571d8029e Mon Sep 17 00:00:00 2001 From: Thomas Piccirello <8296030+Piccirello@users.noreply.github.com> Date: Sun, 6 Jul 2025 11:40:25 -0400 Subject: [PATCH] WebUI: Support horizontal scrolling of tabs Previously, the tabs would overflow to the next line, often being hidden by other content. For example, the "Content" tab is now accessible on mobile. PR #22914. --- src/webui/www/private/css/Tabs.css | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/webui/www/private/css/Tabs.css b/src/webui/www/private/css/Tabs.css index 06a5cebb8..b34952c2b 100644 --- a/src/webui/www/private/css/Tabs.css +++ b/src/webui/www/private/css/Tabs.css @@ -23,13 +23,16 @@ Required by: } .tab-menu { + display: flex; font-size: 11px; list-style-type: none; + overflow-x: auto; padding: 0; } .tab-menu li { cursor: pointer; + flex: 0 0 auto; float: left; }