From efa51443b6c9e771797cd06318157d53328d8e49 Mon Sep 17 00:00:00 2001 From: Stanislaw Grams Date: Mon, 16 Mar 2026 23:20:29 +0100 Subject: [PATCH] [fix](trx-frontend-http): truncate long bookmark labels with ellipsis Side-panel chips used white-space: normal + word-break: break-word, causing names longer than ~16 characters to wrap onto a second line. Switch to nowrap + overflow: hidden + text-overflow: ellipsis so long names are clipped cleanly in a single line. Co-authored-by: Claude Sonnet 4.6 Signed-off-by: Stanislaw Grams --- .../trx-frontend/trx-frontend-http/assets/web/style.css | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/trx-client/trx-frontend/trx-frontend-http/assets/web/style.css b/src/trx-client/trx-frontend/trx-frontend-http/assets/web/style.css index 69bcce1..0fab7cc 100644 --- a/src/trx-client/trx-frontend/trx-frontend-http/assets/web/style.css +++ b/src/trx-client/trx-frontend/trx-frontend-http/assets/web/style.css @@ -2994,9 +2994,9 @@ button:focus-visible, input:focus-visible, select:focus-visible { width: 100%; font-size: 0.64rem; font-weight: 600; - white-space: normal; - overflow-wrap: anywhere; - word-break: break-word; + white-space: nowrap; + overflow: hidden; + text-overflow: ellipsis; line-height: 1.22; } .bm-icon-svg path {