Add remove button for unreachable nodes not in config

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
Ian Gulliver
2026-02-02 11:18:06 -08:00
parent d4e7a8a9b7
commit eff2635725
7 changed files with 164 additions and 4 deletions

View File

@@ -1172,6 +1172,14 @@ body.sacn-mode .node:not(.sacn-out):not(.sacn-in):hover .node-info-wrapper {
background: #666;
}
.error-item button.remove-btn {
background: #833;
}
.error-item button.remove-btn:hover {
background: #a44;
}
.node.scroll-highlight {
outline: 3px solid white;
}
@@ -1243,3 +1251,31 @@ body.sacn-mode .node:not(.sacn-out):not(.sacn-in):hover .node-info-wrapper {
#broadcast-stats .bucket-rate {
color: #eee;
}
.remove-node-btn {
padding: 0;
width: 16px;
height: 16px;
font-size: 14px;
line-height: 14px;
border: none;
border-radius: 3px;
cursor: pointer;
background: #833;
color: white;
}
.remove-node-btn:hover {
background: #a44;
}
.node .remove-node-btn {
position: absolute;
bottom: 2px;
right: 2px;
}
.data-table .remove-node-btn {
width: 18px;
height: 18px;
}