populating estimated times on task list, added minimum styling

This commit is contained in:
2025-07-20 00:24:46 +02:00
parent 8ab3e8792a
commit 20d527286b
3 changed files with 24 additions and 11 deletions

View File

@@ -75,4 +75,17 @@ td, tr{
.position_selector{
background: rgba(0,0,0,0.7);
backdrop-filter: blur(3px);
}
.task.started > .name {
color: green;
}
.task.pending > .name {
color: gray;
}
.task.complete > .name {
color: green;
}
.task.complete > .name:before {
content: "✓ ";
}