fix #490: align vpd policy apply hierarchy

This commit is contained in:
devmrko
2026-06-26 10:26:09 +09:00
parent f39cc49021
commit 9f63adeca5
6 changed files with 170 additions and 31 deletions

View File

@@ -520,6 +520,57 @@ body {
margin: 0;
}
.policy-apply-flow {
align-items: center;
display: flex;
flex-wrap: wrap;
gap: .4rem;
margin-bottom: .75rem;
}
.policy-apply-flow span {
background: var(--rw-surface-muted);
border: 1px solid var(--rw-border);
border-radius: 999px;
color: var(--rw-text);
font-size: .82rem;
font-weight: 800;
min-height: 2rem;
padding: .35rem .7rem;
}
.policy-apply-flow strong {
color: var(--rw-muted);
}
.policy-template-preview dl {
display: grid;
gap: .75rem;
grid-template-columns: repeat(auto-fit, minmax(min(180px, 100%), 1fr));
margin: 0;
}
.policy-template-preview dl > div {
background: var(--rw-surface-muted);
border: 1px solid var(--rw-border);
border-radius: 8px;
min-width: 0;
padding: .7rem;
}
.policy-template-preview dt {
color: var(--rw-muted);
font-size: .74rem;
font-weight: 800;
text-transform: uppercase;
}
.policy-template-preview dd {
font-weight: 700;
margin: .25rem 0 0;
overflow-wrap: anywhere;
}
.bulk-apply-summary {
cursor: pointer;
font-weight: 700;