From 7daa6d83fcaa4822f5a6f878c5e78f0d94ff1d26 Mon Sep 17 00:00:00 2001 From: Brooklyn Nicholson Date: Mon, 22 Jun 2026 19:22:11 -0500 Subject: [PATCH] style(desktop): soften inline code and expanded tool chrome Drop the inline-code border; halve the expanded tool block radius. --- apps/desktop/src/components/assistant-ui/tool-fallback.tsx | 4 +++- apps/desktop/src/styles.css | 3 --- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/apps/desktop/src/components/assistant-ui/tool-fallback.tsx b/apps/desktop/src/components/assistant-ui/tool-fallback.tsx index fd7a9ad3cb6..5e8a1a0b182 100644 --- a/apps/desktop/src/components/assistant-ui/tool-fallback.tsx +++ b/apps/desktop/src/components/assistant-ui/tool-fallback.tsx @@ -77,6 +77,8 @@ const TOOL_SECTION_LABEL_CLASS = 'mb-1 text-[0.65rem] font-medium uppercase trac const TOOL_SECTION_SURFACE_CLASS = 'max-h-20 max-w-full overflow-auto bg-transparent px-2 py-1.5 text-(--ui-text-secondary)' +const TOOL_EXPANDED_SHELL_CLASS = 'rounded-[0.3125rem] border border-(--ui-stroke-tertiary)' + const TOOL_SECTION_PRE_CLASS = cn(TOOL_SECTION_SURFACE_CLASS, 'font-mono text-[0.7rem] leading-relaxed') interface ToolStatusCopy { @@ -372,7 +374,7 @@ function ToolEntry({ part }: ToolEntryProps) {
code { - border: 0.0625rem solid var(--ui-inline-code-border); background: var(--ui-inline-code-background); color: var(--ui-inline-code-foreground); }