diff options
author | Gabriel Albo <gabriel@albo.com.br> | 2014-11-18 00:35:28 +0100 |
---|---|---|
committer | Gabriel Albo <gabriel@albo.com.br> | 2014-11-18 00:35:28 +0100 |
commit | 59939b8b2901550029480920f0d1b39097ce4a59 (patch) | |
tree | 6abc083acf3afa2d2cf4adcd2ac8b08e719ce7ed /web-ui/app/templates/mails | |
parent | 9d051a63165ca505017e9d02f572d2be985d4aa1 (diff) |
#30 - Fixing paperclip icon placement
Diffstat (limited to 'web-ui/app/templates/mails')
-rw-r--r-- | web-ui/app/templates/mails/full_view.hbs | 2 | ||||
-rw-r--r-- | web-ui/app/templates/mails/single.hbs | 13 |
2 files changed, 8 insertions, 7 deletions
diff --git a/web-ui/app/templates/mails/full_view.hbs b/web-ui/app/templates/mails/full_view.hbs index 4cdf25b9..d05537f3 100644 --- a/web-ui/app/templates/mails/full_view.hbs +++ b/web-ui/app/templates/mails/full_view.hbs @@ -69,7 +69,7 @@ {{#if attachments}} <div class="attachmentsAreaWrap"> <div class="attachmentsArea column large-12"> - <p><strong> {{ attachments.length }} attachment(s):</strong></p> + <p><strong><i class="fa fa-paperclip"></i> {{ attachments.length }} attachment(s):</strong></p> <ul> {{#each attachments }} <li> diff --git a/web-ui/app/templates/mails/single.hbs b/web-ui/app/templates/mails/single.hbs index 0242f72d..997ab44f 100644 --- a/web-ui/app/templates/mails/single.hbs +++ b/web-ui/app/templates/mails/single.hbs @@ -3,12 +3,13 @@ </span> <span> <a href="/#/{{ tag }}/mail/{{ ident }}"> - <span class="received-date">{{ header.formattedDate }}</span> - {{#if attachments}} - <div class="attachment-indicator"> - <i class="fa fa-paperclip"></i>lalala - </div> - {{/if}} + <span class="received-date">{{ header.formattedDate }} + {{#if attachments}} + <div class="attachment-indicator"> + <i class="fa fa-paperclip"></i> + </div> + {{/if}} + </span> <div class="from">{{#if header.from }}{{ header.from }}{{else}}{{t "you"}}{{/if}}</div> <div class="subject-and-tags"> {{ header.subject }} |