mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2025-05-02 17:03:42 -04:00
Style guide fixes.
This commit is contained in:
parent
79ff058117
commit
9ba9d8ab4d
2 changed files with 3 additions and 7 deletions
app
|
@ -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%
|
|
@ -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') || [])
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue