mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-11-27 17:45:40 -05:00
Style guide fixes.
This commit is contained in:
parent
79ff058117
commit
9ba9d8ab4d
2 changed files with 3 additions and 7 deletions
|
@ -18,9 +18,5 @@
|
|||
&:hover
|
||||
background-color: rgba(0, 0, 0, 0.125)
|
||||
|
||||
.taskCompletion
|
||||
text-align: center
|
||||
width: 5%
|
||||
|
||||
.task
|
||||
width: 100%
|
|
@ -15,7 +15,7 @@ block content
|
|||
if (thang.tasks && thang.tasks.filter(function(_elem) {return !_elem.complete}).length > 0) || false
|
||||
tr
|
||||
td.taskOwner
|
||||
a(href= "thang/" + thang.get('slug'))
|
||||
a(href= 'thang/' + thang.get('slug'))
|
||||
| #{thang.get('name')}
|
||||
td.tasksTable
|
||||
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
|
||||
tr
|
||||
td.taskOwner
|
||||
a(href= "thang/" + thang.get('slug'))
|
||||
a(href= 'thang/' + thang.get('slug'))
|
||||
| #{thang.get('name')}
|
||||
td.tasksTable
|
||||
for task in (thang.get('tasks') || [])
|
||||
|
|
Loading…
Reference in a new issue