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.
This commit is contained in:
AgentSeal 2026-04-18 04:44:22 -07:00
parent 5e68981723
commit e78a56b348

View file

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