feat #477: show vpd ords control architecture

This commit is contained in:
devmrko
2026-06-26 05:17:27 +09:00
parent 8d2909e589
commit 6e4a306dcd
8 changed files with 115 additions and 6 deletions

View File

@@ -184,6 +184,14 @@ body {
.rw-menu-group:focus-within .rw-menu-panel {
display: grid;
}
.architecture-strip {
grid-template-columns: 1fr;
}
.architecture-arrow {
display: none;
}
}
.page-title {
@@ -201,6 +209,52 @@ body {
margin: .35rem 0 0;
}
.architecture-strip {
align-items: stretch;
display: grid;
gap: .5rem;
grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr);
margin-bottom: 1rem;
}
.architecture-step {
background: var(--rw-surface);
border: 1px solid var(--rw-border);
border-radius: 8px;
padding: .85rem;
}
.architecture-step.active {
border-color: var(--rw-primary);
box-shadow: inset 0 0 0 1px var(--rw-primary);
}
.architecture-kicker {
color: var(--rw-muted);
display: block;
font-size: .72rem;
font-weight: 800;
text-transform: uppercase;
}
.architecture-step strong {
display: block;
font-size: .95rem;
margin-top: .15rem;
}
.architecture-step p {
color: var(--rw-muted);
font-size: .82rem;
margin: .25rem 0 0;
}
.architecture-arrow {
align-self: center;
color: var(--rw-muted);
font-weight: 800;
}
.rw-card,
.content-band,
.summary-tile {