Add breakpoint editing to debugger

This commit is contained in:
Nick O'Leary
2016-11-22 12:57:30 +00:00
parent 127b4f0226
commit 3ca64057c3
5 changed files with 286 additions and 77 deletions

View File

@@ -203,11 +203,34 @@
.debug-message-buffer-string > .debug-message-array-rows {
display: none;
}
.debug-dbgr-breakpoints {
background: #f9f9f9;
padding: 0;
}
.debug-dbgr-content {
.red-ui-editableList {
background: none;
input {
vertical-align: middle;
margin: 0 8px 0 4px;
}
li {
padding: 0;
}
label {
padding: 6px 2px;
&:hover {
background: #f3f3f3;
}
margin: 0;
}
.red-ui-search-result-node-type {
margin-left: 26px;
}
}
.red-ui-editableList-container {
border-radius: 3px;
border: none;
border-radius: 0;
padding: 0;
}
}

View File

@@ -121,16 +121,16 @@
cursor: crosshair;
}
.port_breakpoint {
pointer-events: none;
rect {
stroke: #fff;
stroke-width: 1;
stroke: #666;
stroke-width: 0;
fill: #666;
}
}
.port_breakpoint_inactive {
rect {
fill: #ddd;
fill: none;
}
}
.port_breakpoint_active {
@@ -140,7 +140,7 @@
}
.port_breakpoint_triggered {
rect {
fill: #f77d7d;
fill: #ff1010;
}
}