fix(ui): prevent long filenames from overlapping actions (#17151)

This commit is contained in:
Marcus Schiesser 2026-03-14 05:17:15 +08:00 committed by GitHub
parent 4b9b86b544
commit f2d3a4c70f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 8 additions and 2 deletions

View File

@ -125,7 +125,10 @@
[data-slot="session-review-filename"] {
color: var(--text-strong);
flex-shrink: 0;
min-width: 0;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
[data-slot="session-review-view-button"] {

View File

@ -190,9 +190,12 @@
}
[data-slot="session-turn-diff-filename"] {
flex-shrink: 0;
min-width: 0;
color: var(--text-strong);
font-weight: var(--font-weight-medium);
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
[data-slot="session-turn-diff-meta"] {