From 9efb5856ae83bc4a65aed3bd47030c87793a74af Mon Sep 17 00:00:00 2001 From: jelveh Date: Wed, 22 Jul 2026 14:19:09 -0700 Subject: [PATCH] Size the pill icon to balance the capsule MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 16px read as undersized next to the 26px buttons in the 36px capsule — bump the expanded icon to 20px with a proportional (25%) radius, and object-fit: cover in case an app icon isn't square. Collapsed size is unchanged. --- src/gui/src/css/dashboard.css | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/src/gui/src/css/dashboard.css b/src/gui/src/css/dashboard.css index c7fe5212b..92337448c 100644 --- a/src/gui/src/css/dashboard.css +++ b/src/gui/src/css/dashboard.css @@ -4305,9 +4305,13 @@ body.dashboard-mode .window-dashboard-headless .window-body-app { } .dashboard-app-pill-icon { - width: 16px; - height: 16px; - border-radius: 4px; + /* 20px balances the 26px buttons and the 36px capsule (16px read as + undersized); radius stays 25% of the icon for the app-icon look. + Square icons only — cover guards against a non-square one. */ + width: 20px; + height: 20px; + border-radius: 5px; + object-fit: cover; display: block; transition: width 0.18s ease, height 0.18s ease; }