fix #493: add effective access matrix

This commit is contained in:
devmrko
2026-06-26 14:14:22 +09:00
parent 210e0bd4d0
commit c8326f954d
12 changed files with 805 additions and 0 deletions

View File

@@ -587,6 +587,57 @@ body {
margin-bottom: 0;
}
.matrix-summary {
display: grid;
gap: .75rem;
grid-template-columns: repeat(auto-fit, minmax(min(140px, 100%), 1fr));
margin-bottom: 1rem;
}
.matrix-summary > div {
background: var(--rw-surface-muted);
border: 1px solid var(--rw-border);
border-radius: 8px;
padding: .85rem;
}
.matrix-summary span {
color: var(--rw-muted);
display: block;
font-size: .78rem;
font-weight: 800;
text-transform: uppercase;
}
.matrix-summary strong {
display: block;
font-size: 1.6rem;
line-height: 1.1;
margin-top: .25rem;
}
.setup-steps {
color: var(--rw-muted);
margin: 0;
padding-left: 1.25rem;
}
.setup-steps li + li {
margin-top: .25rem;
}
.matrix-filter {
color: var(--rw-muted);
font-size: .82rem;
font-weight: 700;
min-width: min(280px, 100%);
}
.matrix-list {
max-width: 28rem;
overflow-wrap: anywhere;
}
.policy-apply-flow {
align-items: center;
display: flex;