Add task completion toggle, custom task templates, and umlaut UI updates

This commit is contained in:
Kai
2026-02-16 13:40:02 +01:00
parent a1c1ef31a3
commit 723e9142b2
13 changed files with 548 additions and 118 deletions

View File

@@ -156,6 +156,8 @@ button:hover { background: linear-gradient(180deg, #7cbc19, #5e8a12); }
.btn-small { padding: .35rem .58rem; font-size: .9rem; }
.danger { background: linear-gradient(180deg, #cc4747, #9a2e2e); }
.danger:hover { background: linear-gradient(180deg, #b43d3d, #842626); }
.secondary { background: linear-gradient(180deg, #7b8a97, #596673); }
.secondary:hover { background: linear-gradient(180deg, #6d7b87, #4c5863); }
.check {
display: inline-flex;
@@ -197,6 +199,13 @@ button:hover { background: linear-gradient(180deg, #7cbc19, #5e8a12); }
}
.tasks li { margin: .3rem 0; }
.tasks li,
.task-sublist li {
display: flex;
gap: .5rem;
align-items: flex-start;
justify-content: space-between;
}
.task-sublist {
margin: .3rem 0 0;
@@ -204,6 +213,15 @@ button:hover { background: linear-gradient(180deg, #7cbc19, #5e8a12); }
}
.muted { color: var(--muted); }
.done-task {
opacity: .75;
text-decoration: line-through;
}
.inline-form {
margin: 0;
display: inline-block;
flex: 0 0 auto;
}
.calendar-grid {
display: grid;