Merged in indent-item (pull request #12)

Indented item-description by 1em - issue #56
This commit is contained in:
Tom Price
2015-04-21 22:41:29 +01:00
3 changed files with 10 additions and 1 deletions

View File

@@ -9029,3 +9029,8 @@ textarea {
.event-mic-photo { .event-mic-photo {
max-width: 2em; max-width: 2em;
} }
/* line 52, ../scss/screen.scss */
.item-description {
margin-left: 1em;
}

View File

@@ -47,4 +47,8 @@ textarea {
.event-mic-photo { .event-mic-photo {
max-width: 2em; max-width: 2em;
}
.item-description {
margin-left: 1em;
} }

View File

@@ -2,7 +2,7 @@
<tr id="item-{{item.pk}}" data-pk="{{item.pk}}" class="item_row"> <tr id="item-{{item.pk}}" data-pk="{{item.pk}}" class="item_row">
<td> <td>
<span class="name">{{ item.name }}</span> <span class="name">{{ item.name }}</span>
<div> <div class="item-description">
<em class="description">{{item.description|linebreaksbr}}</em> <em class="description">{{item.description|linebreaksbr}}</em>
</div> </div>
</td> </td>