feat(ui): checkpoints table collapsible, default collapsed

This commit is contained in:
hsiegeln
2026-04-23 16:09:28 +02:00
parent 2c0cf7dc9c
commit f31975e0ef
3 changed files with 143 additions and 75 deletions

View File

@@ -400,3 +400,39 @@
position: relative;
z-index: 1;
}
/* Collapsible Checkpoints header */
.checkpointsSection {
display: flex;
flex-direction: column;
}
.checkpointsHeader {
display: inline-flex;
align-items: center;
gap: 6px;
background: none;
border: none;
padding: 8px 0;
font-size: 13px;
font-weight: 600;
color: var(--text-primary);
cursor: pointer;
text-align: left;
}
.checkpointsHeader:hover {
color: var(--amber);
}
.checkpointsChevron {
color: var(--text-muted);
font-size: 11px;
width: 12px;
text-align: center;
}
.checkpointsCount {
color: var(--text-muted);
font-weight: 400;
}