tui: keep patch tool counts visible with long filenames (#18678)

pull/18683/head
David Hill 2026-03-23 00:45:11 +00:00 committed by GitHub
parent afe9b97274
commit 40e49c5b49
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 32 additions and 5 deletions

View File

@ -8,7 +8,10 @@
justify-content: flex-start; justify-content: flex-start;
[data-slot="basic-tool-tool-trigger-content"] { [data-slot="basic-tool-tool-trigger-content"] {
flex: 0 1 auto;
width: auto; width: auto;
max-width: calc(100% - 24px);
min-width: 0;
display: flex; display: flex;
align-items: center; align-items: center;
align-self: stretch; align-self: stretch;
@ -51,12 +54,16 @@
[data-slot="basic-tool-tool-info"] { [data-slot="basic-tool-tool-info"] {
flex: 0 1 auto; flex: 0 1 auto;
min-width: 0; min-width: 0;
max-width: 100%;
font-size: 14px; font-size: 14px;
} }
[data-slot="basic-tool-tool-info-structured"] { [data-slot="basic-tool-tool-info-structured"] {
flex: 0 1 auto;
width: auto; width: auto;
display: flex; max-width: 100%;
min-width: 0;
display: inline-flex;
align-items: center; align-items: center;
gap: 8px; gap: 8px;
justify-content: flex-start; justify-content: flex-start;
@ -151,4 +158,10 @@
letter-spacing: var(--letter-spacing-normal); letter-spacing: var(--letter-spacing-normal);
color: var(--text-base); color: var(--text-base);
} }
[data-slot="basic-tool-tool-action"] {
display: inline-flex;
align-items: center;
flex-shrink: 0;
}
} }

View File

@ -174,7 +174,9 @@ export function BasicTool(props: BasicToolProps) {
</Show> </Show>
</Show> </Show>
</div> </div>
<Show when={!pending() && trigger().action}>{trigger().action}</Show> <Show when={!pending() && trigger().action}>
<span data-slot="basic-tool-tool-action">{trigger().action}</span>
</Show>
</div> </div>
)} )}
</Match> </Match>

View File

@ -424,7 +424,7 @@
display: flex; display: flex;
align-items: center; align-items: center;
justify-content: space-between; justify-content: space-between;
gap: 8px; gap: 12px;
width: 100%; width: 100%;
[data-slot="message-part-title-area"] { [data-slot="message-part-title-area"] {
@ -436,10 +436,11 @@
} }
[data-slot="message-part-title"] { [data-slot="message-part-title"] {
flex-shrink: 0; flex: 1 1 auto;
display: flex; display: flex;
align-items: center; align-items: center;
gap: 8px; gap: 8px;
min-width: 0;
font-family: var(--font-family-sans); font-family: var(--font-family-sans);
font-size: 14px; font-size: 14px;
font-style: normal; font-style: normal;
@ -466,12 +467,17 @@
} }
[data-slot="message-part-title-text"] { [data-slot="message-part-title-text"] {
flex-shrink: 0;
text-transform: capitalize; text-transform: capitalize;
color: var(--text-strong); color: var(--text-strong);
} }
[data-slot="message-part-title-filename"] { [data-slot="message-part-title-filename"] {
/* No text-transform - preserve original filename casing */ /* No text-transform - preserve original filename casing */
min-width: 0;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
font-weight: var(--font-weight-regular); font-weight: var(--font-weight-regular);
} }
@ -501,6 +507,7 @@
gap: 16px; gap: 16px;
align-items: center; align-items: center;
justify-content: flex-end; justify-content: flex-end;
flex-shrink: 0;
} }
} }
@ -1183,6 +1190,7 @@
display: flex; display: flex;
flex-grow: 1; flex-grow: 1;
min-width: 0; min-width: 0;
overflow: hidden;
} }
[data-slot="apply-patch-directory"] { [data-slot="apply-patch-directory"] {
@ -1196,7 +1204,11 @@
[data-slot="apply-patch-filename"] { [data-slot="apply-patch-filename"] {
color: var(--text-strong); color: var(--text-strong);
flex-shrink: 0; flex: 1 1 auto;
min-width: 0;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
} }
[data-slot="apply-patch-trigger-actions"] { [data-slot="apply-patch-trigger-actions"] {