Skip to content

Commit bd65564

Browse files
authored
fixes #118214 (#118425)
* fixes #118214 * address feedback
1 parent 3a6b7f7 commit bd65564

File tree

10 files changed

+15
-10
lines changed

10 files changed

+15
-10
lines changed

extensions/theme-abyss/themes/abyss-color-theme.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -303,7 +303,7 @@
303303

304304
"list.activeSelectionBackground": "#08286b",
305305
// "list.activeSelectionForeground": "",
306-
"quickInput.list.focusBackground": "#08286b",
306+
"quickInputList.focusBackground": "#08286b",
307307
"list.hoverBackground": "#061940",
308308
"list.inactiveSelectionBackground": "#152037",
309309
"list.dropBackground": "#041D52",

extensions/theme-kimbie-dark/themes/kimbie-dark-color-theme.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"list.highlightForeground": "#e3b583",
1111
"list.activeSelectionBackground": "#7c5021",
1212
"list.hoverBackground": "#7c502166",
13-
"quickInput.list.focusBackground": "#7c5021AA",
13+
"quickInputList.focusBackground": "#7c5021AA",
1414
"list.inactiveSelectionBackground": "#645342",
1515
"pickerGroup.foreground": "#e3b583",
1616
"pickerGroup.border": "#e3b583",

extensions/theme-monokai-dimmed/themes/dimmed-monokai-color-theme.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"colors": {
44
"dropdown.background": "#525252",
55
"list.activeSelectionBackground": "#707070",
6-
"quickInput.list.focusBackground": "#707070",
6+
"quickInputList.focusBackground": "#707070",
77
"list.inactiveSelectionBackground": "#4e4e4e",
88
"list.hoverBackground": "#444444",
99
"list.highlightForeground": "#e58520",

extensions/theme-monokai/themes/monokai-color-theme.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"colors": {
1010
"dropdown.background": "#414339",
1111
"list.activeSelectionBackground": "#75715E",
12-
"quickInput.list.focusBackground": "#414339",
12+
"quickInputList.focusBackground": "#414339",
1313
"dropdown.listBackground": "#1e1f1c",
1414
"list.inactiveSelectionBackground": "#414339",
1515
"list.hoverBackground": "#3e3d32",

extensions/theme-quietlight/themes/quietlight-color-theme.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -473,7 +473,7 @@
473473
"pickerGroup.foreground": "#A6B39B",
474474
"pickerGroup.border": "#749351",
475475
"list.activeSelectionForeground": "#6c6c6c",
476-
"quickInput.list.focusBackground": "#CADEB9",
476+
"quickInputList.focusBackground": "#CADEB9",
477477
"list.hoverBackground": "#e0e0e0",
478478
"list.activeSelectionBackground": "#c4d9b1",
479479
"list.inactiveSelectionBackground": "#d3dbcd",

extensions/theme-red/themes/Red-color-theme.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
"list.activeSelectionBackground": "#880000",
5050
"list.inactiveSelectionBackground": "#770000",
5151
"list.dropBackground": "#662222",
52-
"quickInput.list.focusBackground": "#660000",
52+
"quickInputList.focusBackground": "#660000",
5353
"list.highlightForeground": "#ff4444",
5454
"pickerGroup.foreground": "#cc9999",
5555
"pickerGroup.border": "#ff000033",

extensions/theme-solarized-dark/themes/solarized-dark-color-theme.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -350,7 +350,7 @@
350350

351351
"list.activeSelectionBackground": "#005A6F",
352352
// "list.activeSelectionForeground": "",
353-
"quickInput.list.focusBackground": "#005A6F",
353+
"quickInputList.focusBackground": "#005A6F",
354354
"list.hoverBackground": "#004454AA",
355355
"list.inactiveSelectionBackground": "#00445488",
356356
"list.dropBackground": "#00445488",

extensions/theme-solarized-light/themes/solarized-light-color-theme.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -350,7 +350,7 @@
350350

351351
"list.activeSelectionBackground": "#DFCA88",
352352
"list.activeSelectionForeground": "#6C6C6C",
353-
"quickInput.list.focusBackground": "#DFCA8866",
353+
"quickInputList.focusBackground": "#DFCA8866",
354354
"list.hoverBackground": "#DFCA8844",
355355
"list.inactiveSelectionBackground": "#D1CBB8",
356356
"list.highlightForeground": "#B58900",

extensions/theme-tomorrow-night-blue/themes/tomorrow-night-blue-color-theme.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"errorForeground": "#a92049",
66
"input.background": "#001733",
77
"dropdown.background": "#001733",
8-
"quickInput.list.focusBackground": "#ffffff60",
8+
"quickInputList.focusBackground": "#ffffff60",
99
"list.activeSelectionBackground": "#ffffff60",
1010
"list.inactiveSelectionBackground": "#ffffff40",
1111
"list.hoverBackground": "#ffffff30",

src/vs/platform/theme/common/colorRegistry.ts

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -288,7 +288,6 @@ export const editorWidgetResizeBorder = registerColor('editorWidget.resizeBorder
288288
export const quickInputBackground = registerColor('quickInput.background', { dark: editorWidgetBackground, light: editorWidgetBackground, hc: editorWidgetBackground }, nls.localize('pickerBackground', "Quick picker background color. The quick picker widget is the container for pickers like the command palette."));
289289
export const quickInputForeground = registerColor('quickInput.foreground', { dark: editorWidgetForeground, light: editorWidgetForeground, hc: editorWidgetForeground }, nls.localize('pickerForeground', "Quick picker foreground color. The quick picker widget is the container for pickers like the command palette."));
290290
export const quickInputTitleBackground = registerColor('quickInputTitle.background', { dark: new Color(new RGBA(255, 255, 255, 0.105)), light: new Color(new RGBA(0, 0, 0, 0.06)), hc: '#000000' }, nls.localize('pickerTitleBackground', "Quick picker title background color. The quick picker widget is the container for pickers like the command palette."));
291-
export const quickInputListFocusBackground = registerColor('quickInput.list.focusBackground', { dark: '#062F4A', light: '#D6EBFF', hc: null }, nls.localize('quickInput.listFocusBackground', "Quick picker background color for the focused item."));
292291
export const pickerGroupForeground = registerColor('pickerGroup.foreground', { dark: '#3794FF', light: '#0066BF', hc: Color.white }, nls.localize('pickerGroupForeground', "Quick picker color for grouping labels."));
293292
export const pickerGroupBorder = registerColor('pickerGroup.border', { dark: '#3F3F46', light: '#CCCEDB', hc: Color.white }, nls.localize('pickerGroupBorder', "Quick picker color for grouping borders."));
294293

@@ -388,6 +387,12 @@ export const treeIndentGuidesStroke = registerColor('tree.indentGuidesStroke', {
388387
export const tableColumnsBorder = registerColor('tree.tableColumnsBorder', { dark: '#CCCCCC20', light: '#61616120', hc: null }, nls.localize('treeIndentGuidesStroke', "Tree stroke color for the indentation guides."));
389388
export const listDeemphasizedForeground = registerColor('list.deemphasizedForeground', { dark: '#8C8C8C', light: '#8E8E90', hc: '#A7A8A9' }, nls.localize('listDeemphasizedForeground', "List/Tree foreground color for items that are deemphasized. "));
390389

390+
/**
391+
* Quick pick widget (dependent on List and tree colors)
392+
*/
393+
export const _deprecatedQuickInputListFocusBackground = registerColor('quickInput.list.focusBackground', { dark: null, light: null, hc: null }, '', undefined, nls.localize('quickInput.list.focusBackground deprecation', "Please use quickInputList.focusBackground instead"));
394+
export const quickInputListFocusBackground = registerColor('quickInputList.focusBackground', { dark: oneOf(_deprecatedQuickInputListFocusBackground, listFocusBackground, '#062F4A'), light: oneOf(_deprecatedQuickInputListFocusBackground, listFocusBackground, '#D6EBFF'), hc: null }, nls.localize('quickInput.listFocusBackground', "Quick picker background color for the focused item."));
395+
391396
/**
392397
* Menu colors
393398
*/

0 commit comments

Comments
 (0)