diff --git a/src/components/Composer.vue b/src/components/Composer.vue index 44c12eea18..1b2f25af18 100644 --- a/src/components/Composer.vue +++ b/src/components/Composer.vue @@ -123,17 +123,26 @@ >
- +

{{ t('mail', 'Saving draft …') }} {{ t('mail', 'Draft saved') }}

- {{ t('mail', 'Message options') }} - {{ - t('mail', 'Plain text') - }} + {{ + t('mail', 'Upload attachment') + }} + {{ + t('mail', 'Add attachment from Files') + }} + {{ t('mail', 'Enable text formatting') }}
+
  • +
    +
    {{ uploading ? t('mail', 'Uploading {percent}% …', {percent: uploadProgress}) : '' }}
    +
  • - - +
    @@ -177,4 +170,12 @@ button { border: 1px solid #e9322d; background: #e9322d; } + +.attachments-upload-progress { + display: flex; +} + +.attachments-upload-progress > div { + padding-left: 3px; +}