diff options
| author | taehoon <th.dev91@gmail.com> | 2019-07-03 12:19:25 -0400 |
|---|---|---|
| committer | taehoon <th.dev91@gmail.com> | 2019-07-03 12:19:25 -0400 |
| commit | 6c6aa8446db6f6bab3240e96f82492e527ba4443 (patch) | |
| tree | 6ce24faea910ad1cdd75f428a4311f3e9431ad26 | |
| parent | 0c102deeed91442999bbb9522e071b478d6388b0 (diff) | |
place scope selector on the left consistently
| -rw-r--r-- | src/components/post_status_form/post_status_form.vue | 17 |
1 files changed, 8 insertions, 9 deletions
diff --git a/src/components/post_status_form/post_status_form.vue b/src/components/post_status_form/post_status_form.vue index 505fd25e..52d1b43c 100644 --- a/src/components/post_status_form/post_status_form.vue +++ b/src/components/post_status_form/post_status_form.vue @@ -74,6 +74,13 @@ </p> </EmojiInput> <div class="visibility-tray"> + <scope-selector + :showAll="showAllScopes" + :userDefault="userDefaultScope" + :originalScope="copyMessageScope" + :initialScope="newStatus.visibility" + :onScopeChange="changeVis"/> + <div class="text-format" v-if="postFormats.length > 1"> <label for="post-content-type" class="select"> <select id="post-content-type" v-model="newStatus.contentType" class="form-control"> @@ -89,13 +96,6 @@ {{$t(`post_status.content_type["${postFormats[0]}"]`)}} </span> </div> - - <scope-selector - :showAll="showAllScopes" - :userDefault="userDefaultScope" - :originalScope="copyMessageScope" - :initialScope="newStatus.visibility" - :onScopeChange="changeVis"/> </div> </div> <poll-form @@ -170,7 +170,6 @@ .visibility-tray { display: flex; justify-content: space-between; - flex-direction: row-reverse; padding-top: 5px; } } @@ -217,7 +216,7 @@ .icon-chart-bar { cursor: pointer; } - + .error { text-align: center; |
