From 503f07b9fc9df9a5b8bc0715cebc6039b34f84df Mon Sep 17 00:00:00 2001 From: dlynas <118506937+dlynas@users.noreply.github.com> Date: Fri, 8 May 2026 17:03:01 -0400 Subject: [PATCH] feat: wrap discog modal card titles instead of truncating Card titles in the discography modal now display their full text across multiple lines rather than being cut off with an ellipsis. Artwork and the selection checkbox are pinned to the top of the card so they align with the first line of text when titles wrap. Co-Authored-By: Claude Sonnet 4.6 --- webui/static/style.css | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/webui/static/style.css b/webui/static/style.css index 49bbbe00..4dad688a 100644 --- a/webui/static/style.css +++ b/webui/static/style.css @@ -45427,7 +45427,7 @@ textarea.enhanced-meta-field-input { } .discog-card { - display: flex; align-items: center; gap: 10px; + display: flex; align-items: flex-start; gap: 10px; padding: 8px 10px; border-radius: 10px; background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.04); cursor: pointer; transition: all 0.15s ease; @@ -45464,7 +45464,7 @@ textarea.enhanced-meta-field-input { .discog-card-title { font-size: 13px; font-weight: 600; color: #fff; - white-space: nowrap; overflow: hidden; text-overflow: ellipsis; + white-space: normal; word-break: break-word; } .discog-card-meta { font-size: 11px; color: rgba(255,255,255,0.35); margin-top: 2px; } @@ -45473,6 +45473,7 @@ textarea.enhanced-meta-field-input { width: 20px; height: 20px; border-radius: 6px; flex-shrink: 0; border: 2px solid rgba(255,255,255,0.15); transition: all 0.15s ease; display: flex; align-items: center; justify-content: center; + margin-top: 2px; } .discog-card-cb:checked ~ .discog-card-check {