Skip to content

Commit 002829e

Browse files
author
Miguel Solorio
committed
Update error dot for explorer and outline
1 parent 1f9045f commit 002829e

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

src/vs/editor/contrib/documentSymbols/media/outlineTree.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
}
3636

3737
.monaco-list .outline-element .outline-element-decoration.bubble {
38-
font-family: octicons;
38+
font-family: codicon;
3939
font-size: 14px;
4040
opacity: 0.4;
4141
}

src/vs/editor/contrib/documentSymbols/outlineTree.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ export class OutlineElementRenderer implements ITreeRenderer<OutlineElement, Fuz
168168
} else {
169169
dom.show(template.decoration);
170170
dom.addClass(template.decoration, 'bubble');
171-
template.decoration.innerText = '\uf052';
171+
template.decoration.innerText = '\uea71';
172172
template.decoration.title = localize('deep.problem', "Contains elements with problems");
173173
template.decoration.style.setProperty('--outline-element-color', cssColor);
174174
}

src/vs/workbench/services/decorations/browser/decorationsService.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ class DecorationRule {
7979
// TODO @misolori update bubble badge to use class name instead of unicode
8080
createCSSRule(
8181
`.${this.bubbleBadgeClassName}::after`,
82-
`content: "\uf052"; color: ${getColor(theme, color)}; font-family: octicons; font-size: 14px; padding-right: 10px; opacity: 0.4;`,
82+
`content: "\uea71"; color: ${getColor(theme, color)}; font-family: codicon; font-size: 14px; padding-right: 10px; opacity: 0.4;`,
8383
element
8484
);
8585
}

0 commit comments

Comments
 (0)