diff options
| author | lambda <pleromagit@rogerbraun.net> | 2017-11-21 12:56:57 +0000 |
|---|---|---|
| committer | lambda <pleromagit@rogerbraun.net> | 2017-11-21 12:56:57 +0000 |
| commit | 118d60b871b790cfcf179b11a17af7d2787c8176 (patch) | |
| tree | 7c5d9d93b83da653e5e241ca7cc99b3e2aee3108 /src/components/post_status_form | |
| parent | 80203636803c3035a46d0d82c7778e4aff8d2612 (diff) | |
| parent | 4e07b89bcfb821afb65d39eb389bcb0b4de697c8 (diff) | |
Merge branch 'fix/fix-usercard-breaking-with-certain-colors-restructure' into 'develop'
Various fixes with usercard (and attachments), clean up
See merge request pleroma/pleroma-fe!170
Diffstat (limited to 'src/components/post_status_form')
| -rw-r--r-- | src/components/post_status_form/post_status_form.vue | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/components/post_status_form/post_status_form.vue b/src/components/post_status_form/post_status_form.vue index d0210286..19a00aeb 100644 --- a/src/components/post_status_form/post_status_form.vue +++ b/src/components/post_status_form/post_status_form.vue @@ -25,7 +25,7 @@ <i class="icon-cancel" @click="clearError"></i> </div> <div class="attachments"> - <div class="attachment base03-border" v-for="file in newStatus.files"> + <div class="media-upload-container attachment base03-border" v-for="file in newStatus.files"> <i class="fa icon-cancel" @click="removeMediaFile(file)"></i> <img class="thumbnail media-upload" :src="file.image" v-if="type(file) === 'image'"></img> <video v-if="type(file) === 'video'" :src="file.image" controls></video> @@ -40,6 +40,7 @@ <script src="./post_status_form.js"></script> <style lang="scss"> + .tribute-container { ul { padding: 0px; |
