mirror of
https://github.com/RooVetGit/Roo-Code.git
synced 2026-09-10 22:41:14 +00:00
fix: use foreground color for context-management icons (#9912)
This commit is contained in:
parent
bea7626a9d
commit
1370cb04f7
2 changed files with 2 additions and 2 deletions
|
|
@ -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>
|
||||
|
|
|
|||
|
|
@ -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>
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue