diff options
author | Gislene Pereira <gislene01@gmail.com> | 2016-01-19 17:25:40 -0300 |
---|---|---|
committer | Gislene Pereira <gislene01@gmail.com> | 2016-01-19 17:25:40 -0300 |
commit | 7bc660d72730ed02794aadb66f7a37aa7dada60b (patch) | |
tree | 5cd3596fed047d5d55de1c89ceaf6030d02ca5d3 /web-ui/app/templates/compose | |
parent | 6c239f13207e53281ad9d930dd1614844d3acdec (diff) |
Issue #572 - Remove Attachment text, attachment box takes full width +
+ Attachment size color in lighter gray
+ Add space between each attachment
Diffstat (limited to 'web-ui/app/templates/compose')
-rw-r--r-- | web-ui/app/templates/compose/compose_box.hbs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/web-ui/app/templates/compose/compose_box.hbs b/web-ui/app/templates/compose/compose_box.hbs index eb204501..06cc099a 100644 --- a/web-ui/app/templates/compose/compose_box.hbs +++ b/web-ui/app/templates/compose/compose_box.hbs @@ -32,11 +32,10 @@ <!-- The container for the uploaded files --> <div class="attachmentsAreaWrap {{#unless attachments}}hide{{/unless}}"> <div class="attachmentsArea column large-12"> - <p><strong><i class="fa fa-paperclip"></i> Attachment(s):</strong></p> <ul id="attachment-list-item"> {{#each attachments }} <li> - <a href="/attachment/{{ this.ident }}?encoding={{ this.encoding }}&filename={{ this.name }}">{{ this.name }} ({{ formatSize this.size}}) + <a href="/attachment/{{ this.ident }}?encoding={{ this.encoding }}&filename={{ this.name }}">{{ this.name }} <span class="attachment-size">({{ formatSize this.size}})</span> <i class="fa fa-arrow-down download-icon"></i></a> </li> {{/each }} |