From 623f7b16e0ff3adb9c243eb519aa6b5930e9e7d8 Mon Sep 17 00:00:00 2001 From: BoulderBadgeDad Date: Wed, 3 Jun 2026 16:50:57 -0700 Subject: [PATCH] Manage Workers button: join the worker-orbs collapse/reveal animation MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The screenshot said it all — the orbs collapse into the floating particle cluster after 7s idle, but the Manage Workers pill just sat there static. It wasn't in worker-orbs.js's WORKER_DEFS. Added .em-manage-btn (purple) so it collapses into a floating orb with the others and reveals on header hover — now it behaves like the rest of the cluster instead of an out-of-place static button. --- webui/static/worker-orbs.js | 1 + 1 file changed, 1 insertion(+) diff --git a/webui/static/worker-orbs.js b/webui/static/worker-orbs.js index 3e137429..a5e5f742 100644 --- a/webui/static/worker-orbs.js +++ b/webui/static/worker-orbs.js @@ -26,6 +26,7 @@ { container: '.hydrabase-button-container', color: [200, 200, 200] }, { container: '.soulid-button-container', color: [29, 185, 84], rainbow: true }, { container: '.repair-button-container', color: [180, 130, 255], rainbow: true }, + { container: '.em-manage-btn', color: [168, 85, 247] }, ]; const ORB_RADIUS = 7;