Implement editing of time slots

Render the timeslots as an editable table of times with associated
event.  When the event it's linked to is edited the time slot is removed
from the original event it belonged to and added to the possibly new
event it now belongs to.  This gives a somewhat intutive editing
experience when editing time slots linked to events with multiple times.
This commit is contained in:
Hornwitser 2025-03-14 18:19:58 +01:00
parent 3cdfceb037
commit 02be8a37a5
3 changed files with 721 additions and 2 deletions

View file

@ -53,7 +53,7 @@ a {
}
}
button, input, textarea {
button, input, textarea, select {
font-family: inherit;
font-size: inherit;
}
@ -71,7 +71,7 @@ label>* {
margin-inline-start: 0.5rem;
}
:is(p, form, fieldset, pre) + :is(p, form, fieldset, pre) {
:is(p, form, fieldset, pre, ul) + :is(p, form, fieldset, pre, ul) {
margin-block-start: 0.5rem;
}