Add survey duplication actions

This commit is contained in:
Jürgen Mummert
2026-06-08 14:06:32 +02:00
parent 97a302a985
commit d44f3be571
11 changed files with 266 additions and 11 deletions
@@ -326,10 +326,11 @@
.survey-list-card__footer {
display: flex;
align-items: center;
align-items: baseline;
justify-content: space-between;
gap: 0.75rem;
flex-wrap: wrap;
margin-top: .3em;
}
.survey-list-card__stats {
@@ -409,29 +410,25 @@
}
.survey-visibility-dot {
width: 2.2rem;
height: 2.2rem;
aspect-ratio: 1;
height: 42px;
border-radius: 999px;
border: 1px solid rgba(162, 168, 180, 0.62);
background: #7f8793;
background: #a6adb7;
display: inline-flex;
align-items: center;
justify-content: center;
cursor: pointer;
transition: background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
transition: background 0.18s ease;
}
.survey-visibility-dot.is-on {
background: #0a8378;
border-color: rgba(0, 174, 151, 0.68);
box-shadow: 0 0 0 0.18rem rgba(0, 174, 151, 0.14);
background: #0a832e;
}
.survey-button-row {
display: flex;
flex-wrap: wrap;
gap: 0.5rem;
margin-top: 0.65rem;
}
.survey-button-row--form-actions {