ui(deploy): Checkpoints disclosure (hides current deployment, flags pruned JARs)

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
hsiegeln
2026-04-22 22:51:39 +02:00
parent 00c7c0cd71
commit 08efdfa9c5
3 changed files with 121 additions and 1 deletions

View File

@@ -53,3 +53,44 @@
white-space: nowrap;
border: 0;
}
.checkpointsRow {
margin-top: 8px;
}
.disclosureToggle {
background: none;
border: none;
color: var(--text-muted);
cursor: pointer;
font-size: 13px;
padding: 4px 0;
}
.checkpointList {
display: flex;
flex-direction: column;
gap: 4px;
padding: 6px 0 0 12px;
}
.checkpointRow {
display: flex;
align-items: center;
gap: 10px;
font-size: 13px;
}
.checkpointMeta {
color: var(--text-muted);
}
.checkpointArchived {
color: var(--warning);
font-size: 12px;
}
.checkpointEmpty {
color: var(--text-muted);
font-size: 13px;
}