Implemented Task Manager

This commit is contained in:
2026-04-13 14:25:53 -05:00
parent 1aadf40164
commit d2604b5c10
9 changed files with 234 additions and 6 deletions

39
static/tasks.css Normal file
View File

@@ -0,0 +1,39 @@
ul {
margin: 1em;
padding: 0;
display: flex;
flex-direction: column;
gap: 0.5em;
}
li {
list-style: none;
margin: 0;
padding: 0.5em;
background-color: var(--color-bg2);
border: 1px solid var(--color);
span {
flex-direction: row;
gap: 0.5em;
}
}
.task-value,
.task-value-editor {
flex-grow: 1;
}
output.task-value {
border: none;
text-decoration: 1px dotted underline var(--color);
}
.view-box {
display: flex;
}
.edit-box {
display: none;
}