diff options
| author | HJ <30-hj@users.noreply.git.pleroma.social> | 2019-05-15 19:53:33 +0000 |
|---|---|---|
| committer | HJ <30-hj@users.noreply.git.pleroma.social> | 2019-05-15 19:53:33 +0000 |
| commit | 2be3d5fd5f9ca9d0a782b3ce63c79b24cecda9a8 (patch) | |
| tree | 5224c58dd56ec39776875d1d0d3b2825a36ccb67 /src/components | |
| parent | fedcc716762339b72f6a99722f2c54a300fdff4f (diff) | |
| parent | 81278651d93e850e79a9a62ea47c0bbab65b923a (diff) | |
Merge branch 'fix/line-up-text-format-picker' into 'develop'
Line up rich text format picker with the status form
See merge request pleroma/pleroma-fe!785
Diffstat (limited to 'src/components')
| -rw-r--r-- | src/components/post_status_form/post_status_form.vue | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/components/post_status_form/post_status_form.vue b/src/components/post_status_form/post_status_form.vue index b8b93936..cb70d199 100644 --- a/src/components/post_status_form/post_status_form.vue +++ b/src/components/post_status_form/post_status_form.vue @@ -58,7 +58,7 @@ > </textarea> <div class="visibility-tray"> - <span class="text-format" v-if="formattingOptionsEnabled"> + <div class="text-format" v-if="formattingOptionsEnabled"> <label for="post-content-type" class="select"> <select id="post-content-type" v-model="newStatus.contentType" class="form-control"> <option v-for="postFormat in postFormats" :key="postFormat" :value="postFormat"> @@ -67,7 +67,7 @@ </select> <i class="icon-down-open"></i> </label> - </span> + </div> <scope-selector :showAll="showAllScopes" @@ -250,7 +250,7 @@ .form-group { display: flex; flex-direction: column; - padding: 0.3em 0.5em 0.6em; + padding: 0.25em 0.5em 0.5em; line-height:24px; } |
