From a4f52fa07c3ace37a63f8317eefaba8b4d08792c Mon Sep 17 00:00:00 2001 From: Protocolbot Date: Wed, 8 Jul 2026 14:18:48 -0600 Subject: [PATCH] fix: let source text wrap instead of truncating with ellipsis - Removed white-space:nowrap from .meta so source text wraps - Kept max-width:140px so description still gets the majority of space - Steps count stays on one line (nowrap only on .steps) --- frontend/style.css | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/frontend/style.css b/frontend/style.css index 88d0cfb..ec612ad 100644 --- a/frontend/style.css +++ b/frontend/style.css @@ -240,14 +240,14 @@ header nav a.active { color: var(--accent-bright); border-color: rgba(0,170,255, font-size: 18px; font-family: var(--mono); color: var(--accent); flex-shrink: 0; border: 1px solid var(--border-light); } -.protocol-pill .info { flex: 1 1 auto; min-width: 0; } +.protocol-pill .info { flex: 1; min-width: 0; } .protocol-pill .info h3 { font-size: 14px; font-weight: bold; margin-bottom: 2px; font-family: var(--mono); word-break: break-word; } .protocol-pill .info p { font-size: 13px; color: var(--ink-soft); font-family: var(--sans); word-break: break-word; line-height: 1.4; } -.protocol-pill .meta { font-family: var(--mono); font-size: 11px; color: var(--ink-dim); text-align: right; flex: 0 0 auto; max-width: 120px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; } -.protocol-pill .meta .steps { color: var(--accent); font-weight: bold; } +.protocol-pill .meta { font-family: var(--mono); font-size: 11px; color: var(--ink-dim); text-align: right; flex: 0 0 auto; max-width: 140px; } +.protocol-pill .meta .steps { color: var(--accent); font-weight: bold; white-space: nowrap; } .protocol-pill.collection { background: var(--ink); color: #fff; border-color: var(--accent-deep); }