[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 <noreply@anthropic.com> Signed-off-by: Stanislaw Grams <stanislawgrams@gmail.com>
This commit is contained in:
@@ -2994,9 +2994,9 @@ button:focus-visible, input:focus-visible, select:focus-visible {
|
|||||||
width: 100%;
|
width: 100%;
|
||||||
font-size: 0.64rem;
|
font-size: 0.64rem;
|
||||||
font-weight: 600;
|
font-weight: 600;
|
||||||
white-space: normal;
|
white-space: nowrap;
|
||||||
overflow-wrap: anywhere;
|
overflow: hidden;
|
||||||
word-break: break-word;
|
text-overflow: ellipsis;
|
||||||
line-height: 1.22;
|
line-height: 1.22;
|
||||||
}
|
}
|
||||||
.bm-icon-svg path {
|
.bm-icon-svg path {
|
||||||
|
|||||||
Reference in New Issue
Block a user