fix(vscode): pair thinking label with selection foreground when highlighted
This commit is contained in:
@@ -2256,7 +2256,12 @@ export const ModelControls: React.FC<ModelControlsProps> = ({
|
|||||||
: 'Default';
|
: 'Default';
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<span className={cn('typography-micro whitespace-nowrap', wasAdjusted ? 'text-foreground' : 'text-muted-foreground')}>
|
<span className={cn(
|
||||||
|
'typography-micro whitespace-nowrap',
|
||||||
|
isHighlighted
|
||||||
|
? (wasAdjusted ? 'text-interactive-selection-foreground' : 'text-interactive-selection-foreground/70')
|
||||||
|
: (wasAdjusted ? 'text-foreground' : 'text-muted-foreground'),
|
||||||
|
)}>
|
||||||
Thinking: {displayLabel}
|
Thinking: {displayLabel}
|
||||||
</span>
|
</span>
|
||||||
);
|
);
|
||||||
|
|||||||
Reference in New Issue
Block a user