fixed the background issue on the tasks tab
This commit is contained in:
parent
d5e3be62a4
commit
95146e7820
1 changed files with 42 additions and 40 deletions
|
@ -1,4 +1,6 @@
|
||||||
mixin task-row(cid)
|
.nano.editor-nano-container
|
||||||
|
.nano-content
|
||||||
|
mixin task-row(cid)
|
||||||
- var task = view.getTaskByCID(cid)
|
- var task = view.getTaskByCID(cid)
|
||||||
- var taskName = task.get('name');
|
- var taskName = task.get('name');
|
||||||
- var isComplete = task.get('complete')
|
- var isComplete = task.get('complete')
|
||||||
|
@ -21,7 +23,7 @@ mixin task-row(cid)
|
||||||
else
|
else
|
||||||
span= taskName
|
span= taskName
|
||||||
|
|
||||||
block
|
block
|
||||||
table.table.table-striped.table-hover
|
table.table.table-striped.table-hover
|
||||||
tr
|
tr
|
||||||
th.task-check Complete
|
th.task-check Complete
|
||||||
|
|
Reference in a new issue