fix(kanban): make sure the checklist summary uses the correct text color
continuous-integration/drone/push Build is passing Details

Related-To https://github.com/go-vikunja/frontend/issues/135
This commit is contained in:
kolaente 2024-01-26 21:44:15 +01:00
parent 78d4a518a3
commit cd0149ef69
Signed by: konrad
GPG Key ID: F40E70337AB24C9B
1 changed files with 6 additions and 2 deletions

View File

@ -60,7 +60,7 @@
class="ml-1"
:inline="true"
/>
<checklist-summary :task="task"/>
<checklist-summary :task="task" class="checklist"/>
<span class="icon" v-if="task.attachments.length > 0">
<icon icon="paperclip"/>
</span>
@ -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
}
}
}