Updates to encompass benchmarks

This commit is contained in:
ivan-pelly
2026-03-07 16:10:55 -08:00
parent 69e96403f4
commit 3d531298e2
65 changed files with 2505 additions and 86 deletions
@@ -0,0 +1,55 @@
:host {
display: contents;
}
.node-row {
display: flex;
align-items: center;
gap: 0.375rem;
padding: 0.5rem 1rem;
min-height: 1.75rem;
}
.node-row:hover {
background: #f5f5f5;
}
.node-row:has(.node-label.active) {
background: #e5e5e5;
}
.toggle-indicator {
display: inline-flex;
align-items: center;
justify-content: center;
width: 1rem;
height: 1rem;
border: 1px solid #aaa;
border-radius: 2px;
font-size: 0.75rem;
line-height: 1;
color: #555;
cursor: pointer;
user-select: none;
flex-shrink: 0;
}
.node-label {
flex: 1;
font-size: 0.8125rem;
color: #333;
text-decoration: none;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.node-label.clickable {
cursor: pointer;
user-select: none;
}
.node-label.active {
font-weight: 600;
color: #4f46e5;
}