Browse Source

fix: use foreground color for context-management icons (#9912)

Hannes Rudolph 1 month ago
parent
commit
1370cb04f7

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

@@ -32,7 +32,7 @@ export function CondensationResultRow({ data }: CondensationResultRowProps) {
 				className="flex items-center justify-between cursor-pointer select-none"
 				onClick={() => setIsExpanded(!isExpanded)}>
 				<div className="flex items-center gap-2 flex-grow">
-					<FoldVertical size={16} className="text-blue-400" />
+					<FoldVertical size={16} className="text-vscode-foreground" />
 					<span className="font-bold text-vscode-foreground">
 						{t("chat:contextManagement.condensation.title")}
 					</span>

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

@@ -33,7 +33,7 @@ export function TruncationResultRow({ data }: TruncationResultRowProps) {
 				className="flex items-center justify-between cursor-pointer select-none"
 				onClick={() => setIsExpanded(!isExpanded)}>
 				<div className="flex items-center gap-2 flex-grow">
-					<FoldVertical size={16} className="text-blue-400" />
+					<FoldVertical size={16} className="text-vscode-foreground" />
 					<span className="font-bold text-vscode-foreground">
 						{t("chat:contextManagement.truncation.title")}
 					</span>