Complete roadmap optionals: Holesail, Swarm UI, GitOps, virtualization.
CI / test (push) Successful in 9m58s

Add tunnel persistence and container one-click tunnels with local
Holesail client bind, Swarm services/nodes/tasks view, GitOps stack
sync from git, deploy wizard step chrome, virtualized container lists,
and structure regression tests. Mark Tracks A–D and optional future done.
This commit is contained in:
2026-07-10 22:53:30 -04:00
parent 573298b836
commit 02f25e0981
26 changed files with 2458 additions and 121 deletions
+39
View File
@@ -1,5 +1,44 @@
/* peardock Track B ops UI additions */
/* Deploy multi-step wizard chrome */
.deploy-wizard-steps {
display: flex;
flex-wrap: wrap;
gap: 0.5rem;
align-items: center;
}
.deploy-step {
display: inline-flex;
align-items: center;
gap: 0.4rem;
padding: 0.35rem 0.65rem;
border-radius: 999px;
background: rgba(255, 255, 255, 0.04);
border: 1px solid rgba(255, 255, 255, 0.08);
color: var(--text-muted, #9aa8bc);
font-size: 0.8rem;
font-weight: 600;
}
.deploy-step.active {
color: #ecfdf5;
border-color: rgba(52, 211, 153, 0.45);
background: rgba(52, 211, 153, 0.12);
}
.deploy-step-num {
width: 1.25rem;
height: 1.25rem;
border-radius: 999px;
display: inline-flex;
align-items: center;
justify-content: center;
font-size: 0.7rem;
background: rgba(255, 255, 255, 0.08);
}
.deploy-step.active .deploy-step-num {
background: rgba(52, 211, 153, 0.35);
color: #ecfdf5;
}
.sidebar-section-label {
font-size: 0.7rem;
text-transform: uppercase;