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/js | |
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/js')
-rw-r--r-- | web-ui/app/js/mail_view/ui/attachment_list.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/web-ui/app/js/mail_view/ui/attachment_list.js b/web-ui/app/js/mail_view/ui/attachment_list.js index 72782c6b..786fcb1e 100644 --- a/web-ui/app/js/mail_view/ui/attachment_list.js +++ b/web-ui/app/js/mail_view/ui/attachment_list.js @@ -50,8 +50,8 @@ define( this.buildAttachmentListItem = function (attachment) { return '<a href="' + this.attr.attachmentBaseUrl + '/' + attachment.ident + '?filename=' + - attachment.name + '&encoding=' + attachment.encoding + '">' + attachment.name + ' (' + viewHelper.formatSize(attachment.size) + ')' + - '</a>'; + attachment.name + '&encoding=' + attachment.encoding + '">' + attachment.name + ' <span class="attachment-size"> (' + viewHelper.formatSize(attachment.size) + ')' + + '</span></a>'; }; this.addJqueryFileUploadConfig = function() { @@ -88,4 +88,4 @@ define( } return attachmentList; - });
\ No newline at end of file + }); |