From 81e9eef154fb20d1c5754523d36496d6b1f64f24 Mon Sep 17 00:00:00 2001 From: konrad Date: Wed, 18 Dec 2019 18:55:28 +0000 Subject: [PATCH] Show parent tasks in task overview list (#41) --- src/components/tasks/ShowListTasks.vue | 7 +++++++ src/styles/tasks.scss | 5 +++++ 2 files changed, 12 insertions(+) diff --git a/src/components/tasks/ShowListTasks.vue b/src/components/tasks/ShowListTasks.vue index 2dd50965c7..45bd5c34d9 100644 --- a/src/components/tasks/ShowListTasks.vue +++ b/src/components/tasks/ShowListTasks.vue @@ -34,6 +34,13 @@ + + + + > + {{l.text}} {{ label.title }} diff --git a/src/styles/tasks.scss b/src/styles/tasks.scss index 1f372298ff..5cf9748c93 100644 --- a/src/styles/tasks.scss +++ b/src/styles/tasks.scss @@ -77,6 +77,11 @@ } } + span.parent-tasks { + color: lighten($dark, 50); + width: auto; + } + .remove { color: $red; }