Skip to content

Commit e367f30

Browse files
pouyakaryaeschli
andauthored
fixed the spelling in commentGlyphForground to commentGlyphForeground Co-authored-by: Martin Aeschlimann <[email protected]>
1 parent c83f54a commit e367f30

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

build/lib/stylelint/vscode-known-variables.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@
190190
"--vscode-editorGroupHeader-tabsBorder",
191191
"--vscode-editorGutter-addedBackground",
192192
"--vscode-editorGutter-background",
193-
"--vscode-editorGutter-commentGlyphForground",
193+
"--vscode-editorGutter-commentGlyphForeground",
194194
"--vscode-editorGutter-commentRangeForeground",
195195
"--vscode-editorGutter-commentUnresolvedGlyphForeground",
196196
"--vscode-editorGutter-deletedBackground",

src/vs/workbench/contrib/comments/browser/commentGlyphWidget.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import { IEditorDecorationsCollection } from 'vs/editor/common/editorCommon';
1414
import { CommentThreadState } from 'vs/editor/common/languages';
1515

1616
export const overviewRulerCommentingRangeForeground = registerColor('editorGutter.commentRangeForeground', { dark: opaque(listInactiveSelectionBackground, editorBackground), light: darken(opaque(listInactiveSelectionBackground, editorBackground), .05), hcDark: Color.white, hcLight: Color.black }, nls.localize('editorGutterCommentRangeForeground', 'Editor gutter decoration color for commenting ranges. This color should be opaque.'));
17-
const editorGutterCommentGlyphForeground = registerColor('editorGutter.commentGlyphForground', { dark: editorForeground, light: editorForeground, hcDark: Color.black, hcLight: Color.white }, nls.localize('editorGutterCommentGlyphForeground', 'Editor gutter decoration color for commenting glyphs.'));
17+
const editorGutterCommentGlyphForeground = registerColor('editorGutter.commentGlyphForeground', { dark: editorForeground, light: editorForeground, hcDark: Color.black, hcLight: Color.white }, nls.localize('editorGutterCommentGlyphForeground', 'Editor gutter decoration color for commenting glyphs.'));
1818
registerColor('editorGutter.commentUnresolvedGlyphForeground', { dark: editorGutterCommentGlyphForeground, light: editorGutterCommentGlyphForeground, hcDark: editorGutterCommentGlyphForeground, hcLight: editorGutterCommentGlyphForeground }, nls.localize('editorGutterCommentUnresolvedGlyphForeground', 'Editor gutter decoration color for commenting glyphs for unresolved comment threads.'));
1919

2020
export class CommentGlyphWidget {

src/vs/workbench/contrib/comments/browser/media/review.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -509,7 +509,7 @@ div.preview.inline .monaco-editor .comment-range-glyph {
509509
width: 9px;
510510
left: -6px;
511511
z-index: 10;
512-
color: var(--vscode-editorGutter-commentGlyphForground);
512+
color: var(--vscode-editorGutter-commentGlyphForeground);
513513
text-align: center;
514514
display: flex;
515515
flex-direction: row;

0 commit comments

Comments
 (0)