|
6 | 6 | 'use strict'; |
7 | 7 |
|
8 | 8 | import { ITheme, IThemeService } from 'vs/platform/theme/common/themeService'; |
9 | | -import { inputBackground, inputForeground, ColorIdentifier, selectForeground, selectBackground, selectBorder, inputBorder, foreground, editorBackground, contrastBorder, inputActiveOptionBorder, listFocusBackground, listActiveSelectionBackground, listActiveSelectionForeground, listFocusAndSelectionBackground, listFocusAndSelectionForeground, listInactiveSelectionBackground, listHoverBackground, listDropBackground, pickerGroupBorder, pickerGroupForeground, widgetShadow, inputValidationInfoBorder, inputValidationInfoBackground, inputValidationWarningBorder, inputValidationWarningBackground, inputValidationErrorBorder, inputValidationErrorBackground, activeContrastBorder, buttonForeground, buttonBackground, buttonHoverBackground } from 'vs/platform/theme/common/colorRegistry'; |
| 9 | +import { inputBackground, inputForeground, ColorIdentifier, selectForeground, selectBackground, selectBorder, inputBorder, foreground, editorBackground, contrastBorder, inputActiveOptionBorder, listFocusBackground, listActiveSelectionBackground, listActiveSelectionForeground, listFocusAndSelectionBackground, listInactiveSelectionBackground, listHoverBackground, listDropBackground, pickerGroupBorder, pickerGroupForeground, widgetShadow, inputValidationInfoBorder, inputValidationInfoBackground, inputValidationWarningBorder, inputValidationWarningBackground, inputValidationErrorBorder, inputValidationErrorBackground, activeContrastBorder, buttonForeground, buttonBackground, buttonHoverBackground } from 'vs/platform/theme/common/colorRegistry'; |
10 | 10 | import { IDisposable } from 'vs/base/common/lifecycle'; |
11 | 11 | import { SIDE_BAR_SECTION_HEADER_BACKGROUND } from 'vs/workbench/common/theme'; |
12 | 12 |
|
@@ -143,7 +143,7 @@ export function attachQuickOpenStyler(widget: IThemable, themeService: IThemeSer |
143 | 143 | listActiveSelectionBackground: (style && style.listActiveSelectionBackground) || listActiveSelectionBackground, |
144 | 144 | listActiveSelectionForeground: (style && style.listActiveSelectionForeground) || listActiveSelectionForeground, |
145 | 145 | listFocusAndSelectionBackground: (style && style.listFocusAndSelectionBackground) || listFocusAndSelectionBackground, |
146 | | - listFocusAndSelectionForeground: (style && style.listFocusAndSelectionForeground) || listFocusAndSelectionForeground, |
| 146 | + listFocusAndSelectionForeground: (style && style.listFocusAndSelectionForeground) || listActiveSelectionForeground, |
147 | 147 | listInactiveSelectionBackground: (style && style.listInactiveSelectionBackground) || listInactiveSelectionBackground, |
148 | 148 | listHoverBackground: (style && style.listHoverBackground) || listHoverBackground, |
149 | 149 | listDropBackground: (style && style.listDropBackground) || listDropBackground, |
@@ -173,7 +173,7 @@ export function attachListStyler(widget: IThemable, themeService: IThemeService, |
173 | 173 | listActiveSelectionBackground: (style && style.listActiveSelectionBackground) || listActiveSelectionBackground, |
174 | 174 | listActiveSelectionForeground: (style && style.listActiveSelectionForeground) || listActiveSelectionForeground, |
175 | 175 | listFocusAndSelectionBackground: (style && style.listFocusAndSelectionBackground) || listFocusAndSelectionBackground, |
176 | | - listFocusAndSelectionForeground: (style && style.listFocusAndSelectionForeground) || listFocusAndSelectionForeground, |
| 176 | + listFocusAndSelectionForeground: (style && style.listFocusAndSelectionForeground) || listActiveSelectionForeground, |
177 | 177 | listInactiveFocusBackground: (style && style.listInactiveFocusBackground), |
178 | 178 | listInactiveSelectionBackground: (style && style.listInactiveSelectionBackground) || listInactiveSelectionBackground, |
179 | 179 | listHoverBackground: (style && style.listHoverBackground) || listHoverBackground, |
|
0 commit comments