fix(kanban): make sure the checklist summary uses the correct text color
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
Related-To https://github.com/go-vikunja/frontend/issues/135
This commit is contained in:
parent
78d4a518a3
commit
cd0149ef69
@ -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
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user