fix(ui): prevent long filenames from overlapping actions (#17151)
parent
4b9b86b544
commit
f2d3a4c70f
|
|
@ -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"] {
|
||||
|
|
|
|||
|
|
@ -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"] {
|
||||
|
|
|
|||
Loading…
Reference in New Issue