diff options
| author | shpuld <shp@cock.li> | 2017-11-20 13:27:45 +0200 |
|---|---|---|
| committer | shpuld <shp@cock.li> | 2017-11-20 13:27:45 +0200 |
| commit | 280758f8674be4f9a23223ffa47b5805380bfa4f (patch) | |
| tree | 234a2ebc1ce2bb7d01801a803124abf760a9c562 /src | |
| parent | 092848b32b1abb165ce43e13781b7912a3e73a0c (diff) | |
Hide unknown type attachments, polish the upload preview styling
Diffstat (limited to 'src')
| -rw-r--r-- | src/components/attachment/attachment.js | 2 | ||||
| -rw-r--r-- | src/components/attachment/attachment.vue | 2 | ||||
| -rw-r--r-- | src/components/post_status_form/post_status_form.vue | 2 |
3 files changed, 4 insertions, 2 deletions
diff --git a/src/components/attachment/attachment.js b/src/components/attachment/attachment.js index de551611..8a2a3826 100644 --- a/src/components/attachment/attachment.js +++ b/src/components/attachment/attachment.js @@ -24,7 +24,7 @@ const Attachment = { return this.nsfw && this.hideNsfwLocal && !this.showHidden }, isEmpty () { - return this.type === 'html' && !this.attachment.oembed + return (this.type === 'html' && !this.attachment.oembed) || this.type === 'unknown' } }, methods: { diff --git a/src/components/attachment/attachment.vue b/src/components/attachment/attachment.vue index 954c46b4..20d10cce 100644 --- a/src/components/attachment/attachment.vue +++ b/src/components/attachment/attachment.vue @@ -80,6 +80,8 @@ } img.media-upload { + margin-bottom: -2px; + max-height: 300px; width: 100%; height: 100%; flex: 1; diff --git a/src/components/post_status_form/post_status_form.vue b/src/components/post_status_form/post_status_form.vue index 4b9072a4..d0210286 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" v-for="file in newStatus.files"> + <div class="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> |
