main #1

Merged
davidangel merged 312 commits from vikunja/frontend:main into main 2023-01-26 04:07:52 +00:00
1 changed files with 5 additions and 1 deletions
Showing only changes of commit 83fb8c3ded - Show all commits

View File

@ -14,7 +14,7 @@
<router-link
:to="taskDetailRoute"
:class="{ 'done': task.done}"
:class="{ 'done': task.done, 'show-list': showList && taskList !== null}"
class="tasktext"
>
<span>
@ -391,6 +391,10 @@ function hideDeferDueDatePopup(e) {
width: auto;
}
.show-list .parent-tasks {
padding-left: .25rem;
}
.remove {
color: var(--danger);
}