File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
src/vs/editor/common/modes/supports Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -399,10 +399,10 @@ export function generateTokensCSSForColorMap(colorMap: Color[]): string {
399
399
let rules : string [ ] = [ ] ;
400
400
for ( let i = 1 , len = colorMap . length ; i < len ; i ++ ) {
401
401
let color = colorMap [ i ] ;
402
- rules [ i ] = `.monaco-editor . mtk${ i } { color: ${ color } ; }` ;
402
+ rules [ i ] = `.mtk${ i } { color: ${ color } ; }` ;
403
403
}
404
- rules . push ( '.monaco-editor . mtki { font-style: italic; }' ) ;
405
- rules . push ( '.monaco-editor . mtkb { font-weight: bold; }' ) ;
406
- rules . push ( '.monaco-editor . mtku { text-decoration: underline; text-underline-position: under; }' ) ;
404
+ rules . push ( '.mtki { font-style: italic; }' ) ;
405
+ rules . push ( '.mtkb { font-weight: bold; }' ) ;
406
+ rules . push ( '.mtku { text-decoration: underline; text-underline-position: under; }' ) ;
407
407
return rules . join ( '\n' ) ;
408
408
}
You can’t perform that action at this time.
0 commit comments