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.
This commit is contained in:
Broque Thomas 2026-04-17 12:58:29 -07:00
parent 0cf5cbe9cd
commit 168b4c21dd

View file

@ -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 {