fix #489: add vpd target filtering

This commit is contained in:
devmrko
2026-06-26 10:13:45 +09:00
parent a906dd0128
commit f39cc49021
4 changed files with 274 additions and 3 deletions

View File

@@ -526,6 +526,38 @@ body {
min-height: 2rem;
}
.vpd-target-controls {
align-items: end;
background: var(--rw-surface-muted);
border: 1px solid var(--rw-border);
border-radius: 8px;
display: grid;
gap: .75rem;
grid-template-columns: minmax(min(220px, 100%), 1.5fr) repeat(4, minmax(min(120px, 100%), 1fr)) auto auto;
margin-bottom: .75rem;
min-width: 0;
padding: .75rem;
}
.vpd-target-controls label {
color: var(--rw-muted);
font-size: .78rem;
font-weight: 700;
}
.vpd-support-toggle {
align-items: center;
display: flex;
gap: .45rem;
min-height: 2.2rem;
}
.vpd-target-count {
color: var(--rw-muted);
font-size: .82rem;
white-space: nowrap;
}
.question-presets {
display: flex;
flex-wrap: wrap;
@@ -1146,6 +1178,14 @@ body {
flex: 1 1 auto;
}
.vpd-target-controls {
grid-template-columns: 1fr;
}
.vpd-target-count {
white-space: normal;
}
.table-responsive > .table {
min-width: 960px;
}