Skip to content

Commit daa66ad

Browse files
authored
Update glyph margin CSS rule names (microsoft#185594)
1 parent 8f88484 commit daa66ad

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/vs/editor/browser/viewParts/glyphMargin/glyphMargin.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
Keeping name short for faster parsing.
1313
cgmr = core glyph margin rendering (div)
1414
*/
15-
.monaco-editor .margin-view-overlays .cgmr {
15+
.monaco-editor .glyph-margin-widgets .cgmr {
1616
position: absolute;
1717
display: flex;
1818
align-items: center;

src/vs/editor/browser/viewParts/glyphMargin/glyphMargin.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ export class GlyphMarginWidgets extends ViewPart {
139139
const layoutInfo = options.get(EditorOption.layoutInfo);
140140

141141
this.domNode = createFastDomNode(document.createElement('div'));
142-
this.domNode.setClassName('glyphMarginWidgets');
142+
this.domNode.setClassName('glyph-margin-widgets');
143143
this.domNode.setPosition('absolute');
144144
this.domNode.setTop(0);
145145

0 commit comments

Comments
 (0)