提交 dad2c89e 编写于 作者: I isidor

fixes #35898

上级 51b0bf3c
...@@ -54,8 +54,9 @@ export class DebugStatus extends Themable implements IStatusbarItem { ...@@ -54,8 +54,9 @@ export class DebugStatus extends Themable implements IStatusbarItem {
this.quickOpenService.show('debug ').done(undefined, errors.onUnexpectedError); this.quickOpenService.show('debug ').done(undefined, errors.onUnexpectedError);
})); }));
statusBarItem.title = nls.localize('debug', "Debug"); statusBarItem.title = nls.localize('debug', "Debug");
this.icon = dom.append(statusBarItem, $('.icon')); const a = dom.append(statusBarItem, $('a'));
this.label = dom.append(statusBarItem, $('span.label')); this.icon = dom.append(a, $('.icon'));
this.label = dom.append(a, $('span.label'));
this.setLabel(); this.setLabel();
this.updateStyles(); this.updateStyles();
} }
......
...@@ -103,8 +103,8 @@ ...@@ -103,8 +103,8 @@
} }
/* Debug status */ /* Debug status */
.monaco-workbench .part.statusbar .debug-statusbar-item { /* A very precise css rule to overwrite the display set in statusbar.css */
cursor: pointer; .monaco-workbench > .part.statusbar > .statusbar-item > .debug-statusbar-item > a:not([disabled]):not(.disabled) {
display: flex; display: flex;
} }
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册