feat: Add priority and parent task selection to task edit form; update task handling in Gantt chart

This commit is contained in:
2025-04-21 23:13:38 +02:00
parent 2ab23238cb
commit 858b40c212
9 changed files with 198 additions and 97 deletions

View File

@@ -252,11 +252,12 @@
}
.gantt .bar-label {
fill: #fff;
fill: #000;
dominant-baseline: central;
text-anchor: middle;
font-size: 12px;
font-weight: lighter;
font-weight: 500;
text-align: left;
}
.gantt .bar-label.big {
@@ -403,8 +404,26 @@
/* Ten sam kolor co tekst */
}
.upper-text.today-date {
.gantt .upper-text.today-date {
fill: red !important;
font-weight: bold;
font-size: 16px !important;
}
.gantt .gantt-task-priority-3 {
fill: #ff0000;
font-weight: 600;
font-size: 16px !important;
}
.gantt .gantt-task-priority-2 {
fill: #406eec;
font-weight: 600;
font-size: 16px !important;
}
.gantt .gantt-task-priority-1 {
fill: #3bb930;
font-weight: 600;
font-size: 16px !important;
}