From e78a56b348f7f06f8b8356a73468b5bbbde8cf01 Mon Sep 17 00:00:00 2001 From: AgentSeal Date: Sat, 18 Apr 2026 04:44:22 -0700 Subject: [PATCH] fix(extensions): stop truncating section titles in GNOME popup The Activity and Models section headers were being clipped to "Activi..." and "Mod..." because St.Label ellipsized the combination of text-transform: uppercase plus letter-spacing in the available popup width. Drop the uppercase transform and the letter-spacing so the labels render in full and read consistently across themes. --- extensions/gnome-shell/codeburn@agentseal.org/stylesheet.css | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/extensions/gnome-shell/codeburn@agentseal.org/stylesheet.css b/extensions/gnome-shell/codeburn@agentseal.org/stylesheet.css index a4ec6f0..fa4ebc0 100644 --- a/extensions/gnome-shell/codeburn@agentseal.org/stylesheet.css +++ b/extensions/gnome-shell/codeburn@agentseal.org/stylesheet.css @@ -35,10 +35,9 @@ .codeburn-section-title { font-weight: 600; font-size: 11px; - letter-spacing: 0.06em; - text-transform: uppercase; opacity: 0.6; padding-top: 4px; + padding-bottom: 2px; } .codeburn-row {