Add more description to queryEditor.nullBackground color setting (#22739)

* add desc to disable null bgcolor

* add more desc to queryEditor.nullBackground

* move color outside of the loc string

* comment
This commit is contained in:
Hai Cao
2023-04-14 16:22:16 -07:00
committed by GitHub
parent b1c2cc1740
commit 5de4f205b1

View File

@@ -93,4 +93,4 @@ export const calloutDialogShadowColor = registerColor('calloutDialog.shadow', {
export const DesignerPaneSeparator = registerColor('designer.paneSeparator', { light: '#DDDDDD', dark: '#8A8886', hcDark: contrastBorder, hcLight: contrastBorder }, nls.localize('designer.paneSeparator', 'The pane separator color.'));
// Query Editor
export const queryEditorNullBackground = registerColor('queryEditor.nullBackground', { light: '#FFFFE1', dark: '#4B0082', hcDark: '#000000', hcLight: '#FFFFE1' }, nls.localize('queryEditorNullBackground', 'The background color for null values in the query editor results grid.'));
export const queryEditorNullBackground = registerColor('queryEditor.nullBackground', { light: '#FFFFE1', dark: '#4B0082', hcDark: '#000000', hcLight: '#FFFFE1' }, nls.localize('queryEditorNullBackground', 'The background color for null values in the query editor results grid. To disable the background color, you can use a transparent color like {0}.', '#00000000'));