Merge pull request #362 from RooVetGit/jm/fix-icon-color-light-theme

Fix icon color - light theme
This commit is contained in:
Joe Manley
2025-01-14 15:22:00 -08:00
committed by GitHub
2 changed files with 7 additions and 1 deletions

View File

@@ -0,0 +1,5 @@
---
"roo-cline": patch
---
Fix color for the light+ themes

View File

@@ -556,7 +556,8 @@ const SettingsView = ({ onDone }: SettingsViewProps) => {
minWidth: '20px',
display: 'flex',
alignItems: 'center',
justifyContent: 'center'
justifyContent: 'center',
color: 'var(--vscode-button-foreground)',
}}
onClick={() => {
const newCommands = (allowedCommands ?? []).filter((_, i) => i !== index)