Fix settings toc focus state icon (Refs #126527)

This commit is contained in:
Miguel Solorio 2021-06-16 13:48:33 -07:00
parent c1fb82fdbb
commit 8c8c9bed36
2 changed files with 2 additions and 5 deletions

View file

@ -12,10 +12,6 @@
overflow: hidden;
}
.settings-editor .codicon {
color: inherit !important;
}
.settings-editor:focus {
outline: none !important;
}

View file

@ -15,7 +15,7 @@ import { IContextKeyService } from 'vs/platform/contextkey/common/contextkey';
import { IInstantiationService } from 'vs/platform/instantiation/common/instantiation';
import { IKeybindingService } from 'vs/platform/keybinding/common/keybinding';
import { IListService, IWorkbenchObjectTreeOptions, WorkbenchObjectTree } from 'vs/platform/list/browser/listService';
import { editorBackground, focusBorder, foreground, transparent } from 'vs/platform/theme/common/colorRegistry';
import { editorBackground, focusBorder, foreground, iconForeground, transparent } from 'vs/platform/theme/common/colorRegistry';
import { attachStyler } from 'vs/platform/theme/common/styler';
import { IThemeService } from 'vs/platform/theme/common/themeService';
import { SettingsTreeFilter } from 'vs/workbench/contrib/preferences/browser/settingsTree';
@ -244,6 +244,7 @@ export class TOCTree extends WorkbenchObjectTree<SettingsTreeGroupElement> {
listFocusOutline: focusBorder,
listActiveSelectionBackground: editorBackground,
listActiveSelectionForeground: settingsHeaderForeground,
listActiveSelectionIconForeground: iconForeground,
listFocusAndSelectionBackground: editorBackground,
listFocusAndSelectionForeground: settingsHeaderForeground,
listFocusBackground: editorBackground,