diff --git a/src/components/Home.vue b/src/components/Home.vue index 0e28beff1..b54a6d9de 100644 --- a/src/components/Home.vue +++ b/src/components/Home.vue @@ -2,18 +2,33 @@

Hi {{user.infos.username}}!

Click on a list or namespace on the left to get started.

+

Loading tasks...

+

Current tasks

+
+
+ +
+
\ No newline at end of file diff --git a/src/components/lists/ShowList.vue b/src/components/lists/ShowList.vue index f28003106..753c5f9f6 100644 --- a/src/components/lists/ShowList.vue +++ b/src/components/lists/ShowList.vue @@ -270,47 +270,4 @@ } } } - - - \ No newline at end of file + \ No newline at end of file diff --git a/src/vikunja.scss b/src/vikunja.scss index 4bcae392b..130824b6a 100644 --- a/src/vikunja.scss +++ b/src/vikunja.scss @@ -149,4 +149,46 @@ h1,h2,h3,h4,h5,h6{ .buttonright { margin-right: 0.5rem; +} + +.tasks { + margin-top: 1rem; + padding: 0; + text-align: left; + + .task { + display: block; + padding: 0.5rem 1rem; + border-bottom: 1px solid darken(#fff, 10%); + + label{ + width: 96%; + display: inline-block; + cursor: pointer; + } + + input[type="checkbox"] { + vertical-align: middle; + } + + .settings{ + float: right; + width: 4%; + cursor: pointer; + } + } + + .task:last-child { + border-bottom: none; + } +} + +.taskedit{ + min-height: calc(100% - 1rem); + margin-top: 1rem; +} + +.settings{ + float: right; + color: rgb(74, 74, 74); } \ No newline at end of file