Skip to content
This repository was archived by the owner on May 15, 2026. It is now read-only.

Commit 1370cb0

Browse files
fix: use foreground color for context-management icons (#9912)
1 parent bea7626 commit 1370cb0

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

webview-ui/src/components/chat/context-management/CondensationResultRow.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ export function CondensationResultRow({ data }: CondensationResultRowProps) {
3232
className="flex items-center justify-between cursor-pointer select-none"
3333
onClick={() => setIsExpanded(!isExpanded)}>
3434
<div className="flex items-center gap-2 flex-grow">
35-
<FoldVertical size={16} className="text-blue-400" />
35+
<FoldVertical size={16} className="text-vscode-foreground" />
3636
<span className="font-bold text-vscode-foreground">
3737
{t("chat:contextManagement.condensation.title")}
3838
</span>

webview-ui/src/components/chat/context-management/TruncationResultRow.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ export function TruncationResultRow({ data }: TruncationResultRowProps) {
3333
className="flex items-center justify-between cursor-pointer select-none"
3434
onClick={() => setIsExpanded(!isExpanded)}>
3535
<div className="flex items-center gap-2 flex-grow">
36-
<FoldVertical size={16} className="text-blue-400" />
36+
<FoldVertical size={16} className="text-vscode-foreground" />
3737
<span className="font-bold text-vscode-foreground">
3838
{t("chat:contextManagement.truncation.title")}
3939
</span>

0 commit comments

Comments
 (0)