From 168b4c21dddc49f30c057295741baf8ca92aaaa6 Mon Sep 17 00:00:00 2001 From: Broque Thomas <26755000+Nezreka@users.noreply.github.com> Date: Fri, 17 Apr 2026 12:58:29 -0700 Subject: [PATCH] Fix batch panel collapse button not clickable when collapsed Title text was pushing the toggle button out of the 44px collapsed panel. Now hides the title and centers the button when collapsed. --- webui/static/style.css | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/webui/static/style.css b/webui/static/style.css index f4bf17ca..8867ce6d 100644 --- a/webui/static/style.css +++ b/webui/static/style.css @@ -56173,7 +56173,15 @@ body.reduce-effects *::after { .adl-batch-panel.collapsed { width: 44px; min-width: 44px; - padding-left: 10px; + padding: 0 4px; +} + +.adl-batch-panel.collapsed .adl-batch-panel-title { + display: none; +} + +.adl-batch-panel.collapsed .adl-batch-panel-header { + justify-content: center; } .adl-batch-empty {