enhanced questionnaire version handling and handling uploads from outdated questionnaires through automatic revisioning and checks
Some checks failed
PHPUnit / test (push) Has been cancelled

This commit is contained in:
2026-06-12 21:38:39 +02:00
parent 5dff24a232
commit b4d4de72f4
17 changed files with 1289 additions and 209 deletions

View File

@ -318,6 +318,18 @@ code {
.badge-draft { background: var(--badge-draft-bg); color: var(--badge-draft-fg); }
.badge-active { background: var(--badge-active-bg); color: var(--badge-active-fg); }
.badge-archived { background: var(--badge-archived-bg); color: var(--badge-archived-fg); }
.retired-questions-panel summary {
cursor: pointer;
font-weight: 600;
margin-bottom: 8px;
}
.retired-question-item {
opacity: 0.85;
}
.retired-question-item .question-header {
cursor: default;
}
.badge-completed { background: var(--badge-active-bg); color: var(--badge-active-fg); }
.badge-in_progress { background: var(--badge-in-progress-bg); color: var(--badge-in-progress-fg); }
.badge-pending { background: var(--badge-pending-bg); color: var(--badge-pending-fg); }