From cd0149ef69a58e2c00e68541f3c26745fee218df Mon Sep 17 00:00:00 2001 From: kolaente Date: Fri, 26 Jan 2024 21:44:15 +0100 Subject: [PATCH] fix(kanban): make sure the checklist summary uses the correct text color Related-To https://github.com/go-vikunja/frontend/issues/135 --- src/components/tasks/partials/kanban-card.vue | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/src/components/tasks/partials/kanban-card.vue b/src/components/tasks/partials/kanban-card.vue index d56ca2b18..1a7231b53 100644 --- a/src/components/tasks/partials/kanban-card.vue +++ b/src/components/tasks/partials/kanban-card.vue @@ -60,7 +60,7 @@ class="ml-1" :inline="true" /> - + @@ -297,6 +297,10 @@ $task-background: var(--white); .priority-label { background: hsl(220, 13%, 91%); } + + .footer :deep(.checklist-summary) { + color: hsl(216.9, 19.1%, 26.7%); // grey-700 + } } &.has-light-text { @@ -319,7 +323,7 @@ $task-background: var(--white); } :deep(.checklist-summary) { - color: hsl(217.9, 10.6%, 64.9%); // grey-400 + color: hsl(220, 13%, 91%); // grey-200 } } }