From 39bde52014f2eec2ca2f76157d43e1506286c3b5 Mon Sep 17 00:00:00 2001 From: Brooklyn Nicholson Date: Mon, 27 Jul 2026 21:28:00 -0500 Subject: [PATCH] fix(desktop): let the expandable fade match its own surface The overflow fade hardcoded --ui-chat-surface-background, so inside a code block it smeared the chat background over the block's own fill. Read an --expandable-fade-from override with the chat surface as the default. --- apps/desktop/src/components/chat/expandable-block.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/desktop/src/components/chat/expandable-block.tsx b/apps/desktop/src/components/chat/expandable-block.tsx index f4a8e1965298..7cd6459db30e 100644 --- a/apps/desktop/src/components/chat/expandable-block.tsx +++ b/apps/desktop/src/components/chat/expandable-block.tsx @@ -44,7 +44,7 @@ export function ExpandableBlock({ children, className }: ExpandableBlockProps) { // both sideways scrolling and text selection. Keep the fade // `pointer-events-none` and pin the only clickable target — a compact // toggle — to the right edge, clear of the draggable scrollbar track. -
+