aboutsummaryrefslogtreecommitdiff
path: root/src/components/image_cropper/image_cropper.vue
diff options
context:
space:
mode:
authorHJ <30-hj@users.noreply.git.pleroma.social>2019-03-25 19:09:22 +0000
committerHJ <30-hj@users.noreply.git.pleroma.social>2019-03-25 19:09:22 +0000
commit3025532ecf6b728604d14af9bf218e96de0756ed (patch)
tree6ae4a91f593357bbbcae3109002dbd22122e1d02 /src/components/image_cropper/image_cropper.vue
parent8522063b2c4a35f0926517a3b75376c81131dd79 (diff)
parent854d0e80512d2da80cd5153144698a5148da4aa6 (diff)
Merge branch 'develop' into 'mastoapi/public-tl'
# Conflicts: # src/services/api/api.service.js
Diffstat (limited to 'src/components/image_cropper/image_cropper.vue')
-rw-r--r--src/components/image_cropper/image_cropper.vue7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/components/image_cropper/image_cropper.vue b/src/components/image_cropper/image_cropper.vue
index 24a6f3bd..129e6f46 100644
--- a/src/components/image_cropper/image_cropper.vue
+++ b/src/components/image_cropper/image_cropper.vue
@@ -7,6 +7,7 @@
<div class="image-cropper-buttons-wrapper">
<button class="btn" type="button" :disabled="submitting" @click="submit" v-text="saveText"></button>
<button class="btn" type="button" :disabled="submitting" @click="destroy" v-text="cancelText"></button>
+ <button class="btn" type="button" :disabled="submitting" @click="submitWithoutCropping" v-text="saveWithoutCroppingText"></button>
<i class="icon-spin4 animate-spin" v-if="submitting"></i>
</div>
<div class="alert error" v-if="submitError">
@@ -36,7 +37,11 @@
}
&-buttons-wrapper {
- margin-top: 15px;
+ margin-top: 10px;
+
+ button {
+ margin-top: 5px;
+ }
}
}
</style>