summaryrefslogtreecommitdiff
path: root/web-ui/app/templates/compose/attachment_item.hbs
diff options
context:
space:
mode:
Diffstat (limited to 'web-ui/app/templates/compose/attachment_item.hbs')
-rw-r--r--web-ui/app/templates/compose/attachment_item.hbs13
1 files changed, 3 insertions, 10 deletions
diff --git a/web-ui/app/templates/compose/attachment_item.hbs b/web-ui/app/templates/compose/attachment_item.hbs
index 6fefda2f..7a64f6f5 100644
--- a/web-ui/app/templates/compose/attachment_item.hbs
+++ b/web-ui/app/templates/compose/attachment_item.hbs
@@ -1,11 +1,4 @@
-<li data-ident="{{ this.ident }}">
- <a href="/attachment/{{ this.ident }}?encoding={{ this.encoding }}&filename={{ this.name }}">
- {{ this.name }} <span class="attachment-size">({{ formatSize this.size}})</span>
- {{#if received}}
- <i class="fa fa-arrow-down download-icon"></i>
- {{/if}}
- {{#if removable}}
- <i class="fa fa-close remove-icon"></i>
- {{/if}}
- </a>
+<li data-ident="{{ this.ident }}" class="compose-view__attachments-list-item">
+ <a class="compose-view__attachments-list-item-label" href="/attachment/{{ this.ident }}?encoding={{ this.encoding }}&filename={{ this.name }}">{{ this.name }} <span class="attachment-size">({{ formatSize this.size}})</span></a>
+ {{#if removable}}<i class="fa fa-close remove-icon compose-view__attachments-list-item-icon"></i>{{/if}}
</li>