enhance(ui): colorful task icons

pull/11102/head
charlie 2024-02-28 11:49:50 +08:00
parent 242fe696fc
commit b43c576158
2 changed files with 11 additions and 2 deletions

View File

@ -59,8 +59,8 @@
{:value status
:uuid (random-uuid)
:icon {:type :tabler-icon :id icon :name icon}})
[["Backlog" "Backlog"] ["Todo" "Todo"] ["Doing" "In Progress 50"]
["In Review" "In Review"] ["Done" "Done"] ["Canceled" "Cancelled"]])
[["Backlog" "Backlog"] ["Todo" "Todo"] ["Doing" "InProgress50"]
["In Review" "InReview"] ["Done" "Done"] ["Canceled" "Cancelled"]])
:visible true}
:priority {:original-name "Priority"
:schema

View File

@ -25,3 +25,12 @@
}
}
.ls-icon {
&-Backlog { @apply text-gray-05; }
&-Todo { @apply text-gray-11; }
&-InProgress50 { @apply text-yellow-rx-08; }
&-InReview { @apply text-blue-rx-09; }
&-Done { @apply text-green-rx-08; }
&-Cancelled { @apply text-red-rx-08; }
}