From 58da17dbb0a053a67173002d44d220d783abceee Mon Sep 17 00:00:00 2001 From: clagentic <10177887+akuehner@users.noreply.github.com> Date: Fri, 5 Jun 2026 14:04:38 -0400 Subject: [PATCH] fix(ui): truncate long slash-command descriptions with ellipsis .slash-desc now clamps to one line via overflow:hidden + text-overflow: ellipsis. .slash-cmd gets flex-shrink:0 so the command name is never squeezed. Fixes verbose skill descriptions (e.g. /microsoft-foundry) blowing out the autocomplete menu. Co-Authored-By: Claude Sonnet 4.6 --- lib/public/css/input.css | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/lib/public/css/input.css b/lib/public/css/input.css index 6d8ef42f..38c281ad 100644 --- a/lib/public/css/input.css +++ b/lib/public/css/input.css @@ -859,11 +859,16 @@ body.mate-dm-active #input-wrapper, font-weight: 600; font-size: 14px; font-family: "Roboto Mono", monospace; + flex-shrink: 0; } .slash-item .slash-desc { color: var(--text-muted); font-size: 13px; + overflow: hidden; + white-space: nowrap; + text-overflow: ellipsis; + min-width: 0; } /* ==========================================================================