From f85ec726b723db2ac5031c3c39bd3b250e85e63f Mon Sep 17 00:00:00 2001 From: "Danilo M." Date: Tue, 15 Sep 2026 13:02:54 +0200 Subject: fix: make the launcher mark visible on its own pill The mark was tinted with the accent and then drawn on the accent pill, so it rendered lavender on lavender and the pill looked empty. It takes the bar's background colour now, which is the contrast the pill was always missing. The pill also sized to its icon rather than to text, which made it a circle among capsules; its horizontal padding now matches its neighbours' shape. Co-Authored-By: Claude Opus 5 --- styles/modules.css | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'styles/modules.css') diff --git a/styles/modules.css b/styles/modules.css index ade8a88..9cc3f5e 100644 --- a/styles/modules.css +++ b/styles/modules.css @@ -11,11 +11,13 @@ * ------------------------------------------------------------------ */ /* The mark itself is the image module's own content, so this only draws the - * pill it sits in. */ + * pill it sits in. The horizontal padding is wider than the vertical so the + * pill reads as a capsule like its neighbours rather than a circle: an image + * module sizes to its icon, where the others size to their text. */ #image.launcher { background: @accent; - padding: 2px 10px; - min-width: 22px; + padding: 2px 14px; + min-width: 20px; } /* The accent pill inverts on hover rather than lightening: it is already the -- cgit v1.2.3