Style guide fixes.

This commit is contained in:
Josh Callebaut 2015-12-21 12:51:29 -08:00
parent 79ff058117
commit 9ba9d8ab4d
2 changed files with 3 additions and 7 deletions
app
styles/editor
templates/editor

View file

@ -10,7 +10,7 @@
.taskDescription:nth-of-type(odd) .taskDescription:nth-of-type(odd)
background-color: rgba(0, 0, 0, 0.0625) background-color: rgba(0, 0, 0, 0.0625)
.taskDescription .taskDescription
width: 100% width: 100%
padding-left: 4px padding-left: 4px
@ -18,9 +18,5 @@
&:hover &:hover
background-color: rgba(0, 0, 0, 0.125) background-color: rgba(0, 0, 0, 0.125)
.taskCompletion
text-align: center
width: 5%
.task .task
width: 100% width: 100%

View file

@ -15,7 +15,7 @@ block content
if (thang.tasks && thang.tasks.filter(function(_elem) {return !_elem.complete}).length > 0) || false if (thang.tasks && thang.tasks.filter(function(_elem) {return !_elem.complete}).length > 0) || false
tr tr
td.taskOwner td.taskOwner
a(href= "thang/" + thang.get('slug')) a(href= 'thang/' + thang.get('slug'))
| #{thang.get('name')} | #{thang.get('name')}
td.tasksTable td.tasksTable
for task in (thang.tasks || []) for task in (thang.tasks || [])
@ -39,7 +39,7 @@ block content
if (thang.get('tasks') && thang.get('tasks').filter(function(_elem) {return !_elem.complete}).length > 0) || false if (thang.get('tasks') && thang.get('tasks').filter(function(_elem) {return !_elem.complete}).length > 0) || false
tr tr
td.taskOwner td.taskOwner
a(href= "thang/" + thang.get('slug')) a(href= 'thang/' + thang.get('slug'))
| #{thang.get('name')} | #{thang.get('name')}
td.tasksTable td.tasksTable
for task in (thang.get('tasks') || []) for task in (thang.get('tasks') || [])