提交 3106d10d 编写于 作者: B Benjamin Pasero

Debug: Breakpoints not center aligned (Windows) (fixes #2215)

上级 261d66a6
......@@ -789,7 +789,10 @@ export class BreakpointsRenderer implements tree.IRenderer {
data.checkbox = <HTMLInputElement> $('input');
data.checkbox.type = 'checkbox';
data.checkbox.className = isMacintosh ? 'checkbox' : 'checkbox.win-linux'
if (!isMacintosh) {
data.checkbox.className = 'checkbox-win-linux';
}
dom.append(data.breakpoint, data.checkbox);
data.name = dom.append(data.breakpoint, $('span.name'));
......
......@@ -191,7 +191,7 @@
margin-left: 0.8em;
}
.debug-viewlet .debug-breakpoints .breakpoint > .checkbox.win-linux {
.debug-viewlet .debug-breakpoints .breakpoint > .checkbox-win-linux {
vertical-align: middle;
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册