diff options
author | Gabriel Albo <gabriel@albo.com.br> | 2015-04-09 17:28:25 -0300 |
---|---|---|
committer | Gabriel Albo <gabriel@albo.com.br> | 2015-04-09 17:28:25 -0300 |
commit | bc85ab98315d5bbd21c5404689126252348a53c7 (patch) | |
tree | 3d80e4042756f46938d666273634bfa5450f878c /web-ui | |
parent | 2928dda9e0b21e05f1d22a6448733484e53fad40 (diff) |
Moving email date information to recipients line
Diffstat (limited to 'web-ui')
-rw-r--r-- | web-ui/app/templates/mails/full_view.hbs | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/web-ui/app/templates/mails/full_view.hbs b/web-ui/app/templates/mails/full_view.hbs index 50ac2776..55d116d2 100644 --- a/web-ui/app/templates/mails/full_view.hbs +++ b/web-ui/app/templates/mails/full_view.hbs @@ -10,7 +10,7 @@ <div style="display:inline-block;padding-top: 5px;width:95%;flex-shrink:1" > - <div class="column large-10 no-padding security-status"> + <div class="column large-12 no-padding security-status"> {{#if signatureStatus}} <span class="{{signatureStatus}}"> {{t signatureStatus }} @@ -22,10 +22,7 @@ </span> {{/if}} </div> - <div class="column large-2 no-padding text-right"> - <span class="received-date">{{ header.formattedDate }}</span> - </div> - <div class="recipients column large-12 no-padding"> + <div class="recipients column large-10 no-padding"> <span class="from"> {{#if header.from }} {{ header.from }} @@ -36,7 +33,9 @@ <i class="fa fa-long-arrow-right"></i> {{{formatRecipients header}}} </div> - + <div class="recipients column large-2 text-right"> + <span class="received-date">{{ header.formattedDate }}</span> + </div> <div> <h3 class="subjectArea column large-10 no-padding"> <span class="subject">{{ header.subject }}</span> |