refactored confirmation dialogs to use a unified confirmAction modal
Some checks failed
PHPUnit / test (push) Has been cancelled

This commit is contained in:
2026-06-14 18:02:03 +02:00
parent 6ae29f1648
commit b06c4bf3ee
10 changed files with 295 additions and 39 deletions

View File

@ -1900,6 +1900,23 @@ body.modal-open {
border: 1px solid var(--border);
}
.confirm-modal-message {
margin: 0 0 16px;
line-height: 1.5;
}
.confirm-modal-message p {
margin: 0 0 10px;
}
.confirm-modal-message p:last-child {
margin-bottom: 0;
}
.confirm-modal-choices {
margin-bottom: 16px;
}
.confirm-modal--danger .confirm-modal-dialog {
border-color: color-mix(in srgb, var(--danger-border) 40%, var(--border));
}
/* Options builder (inside add-question form) */
.options-builder {
border-top: 1px solid var(--border);