[theme] rename editorPeekBorders -> editorPeekBorder (for #23464)

This commit is contained in:
Martin Aeschlimann
2017-03-30 12:21:08 +02:00
parent 6534252837
commit c9f06d862f
2 changed files with 3 additions and 3 deletions

View File

@@ -271,7 +271,7 @@
"editorPeekResultsSelectedForeground": "#7799ee",
"editorPeekEditorBackground": "#001F33",
"editorPeekTitleBackground": "#060621",
"editorPeekBorders": "#7777cc",
"editorPeekBorder": "#7777cc",
"editorPeekEditorMatchHighlight": "#ddbb5555",
"editorLineNumbers": "#406385",

View File

@@ -520,7 +520,7 @@ export class ReferenceWidget extends PeekViewWidget {
}
private _applyTheme(theme: ITheme) {
let borderColor = theme.getColor(editorPeekBorders) || Color.transparent;
let borderColor = theme.getColor(editorPeekBorder) || Color.transparent;
this.style({
arrowColor: borderColor,
frameColor: borderColor,
@@ -778,7 +778,7 @@ export class ReferenceWidget extends PeekViewWidget {
export const editorPeekTitleBackground = registerColor('editorPeekTitleBackground', { dark: '#1E1E1E', light: '#FFFFFF', hc: '#0C141F' }, nls.localize('editorPeekTitleBackground', 'Editor peek view title area background'));
export const editorPeekTitle = registerColor('editorPeekTitle', { dark: '#FFFFFF', light: '#333333', hc: '#FFFFFF' }, nls.localize('editorPeekTitle', 'Editor peek view title color'));
export const editorPeekTitleInfo = registerColor('editorPeekTitleInfo', { dark: '#ccccccb3', light: '#6c6c6cb3', hc: '#FFFFFF99' }, nls.localize('editorPeekTitleInfo', 'Editor peek view title info color'));
export const editorPeekBorders = registerColor('editorPeekBorders', { dark: '#007acc', light: '#007acc', hc: '#6FC3DF' }, nls.localize('editorPeekBorders', 'Editor peek view borders'));
export const editorPeekBorder = registerColor('editorPeekBorder', { dark: '#007acc', light: '#007acc', hc: '#6FC3DF' }, nls.localize('editorPeekBorder', 'Editor peek view borders'));
export const editorPeekResultsBackground = registerColor('editorPeekResultsBackground', { dark: '#252526', light: '#F3F3F3', hc: Color.black }, nls.localize('editorPeekResultsBackground', 'Background color of the peek view result list'));
export const editorPeekResultsMatchForeground = registerColor('editorPeekResultsMatchForeground', { dark: '#bbbbbb', light: '#646465', hc: Color.white }, nls.localize('editorPeekResultsMatchForeground', 'Match entry foreground in the peek view result list'));