diff options
| author | shpuld <shpuld@gmail.com> | 2017-02-24 19:43:27 +0200 |
|---|---|---|
| committer | shpuld <shpuld@gmail.com> | 2017-02-24 19:43:27 +0200 |
| commit | 142a8a1a76c1237078ef7ced163a4088638441ff (patch) | |
| tree | c4073269531ace9f63faf54fd3cca626a1b80d3d /src/components/post_status_form | |
| parent | cac47f712858b489103db82a73c2a804b37d4743 (diff) | |
Fix poor choice of colors for input/textarea borders, adjust login form padding.
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 ef8034a3..07280a41 100644 --- a/src/components/post_status_form/post_status_form.vue +++ b/src/components/post_status_form/post_status_form.vue @@ -2,7 +2,7 @@ <div class="post-status-form"> <form @submit.prevent="postStatus(newStatus)"> <div class="form-group" > - <textarea v-model="newStatus.status" placeholder="Just landed in L.A." rows="3" class="form-control base05-border" @keyup.meta.enter="postStatus(newStatus)" @keyup.ctrl.enter="postStatus(newStatus)" @drop="fileDrop" @dragover.prevent="fileDrag"></textarea> + <textarea v-model="newStatus.status" placeholder="Just landed in L.A." rows="3" class="form-control" @keyup.meta.enter="postStatus(newStatus)" @keyup.ctrl.enter="postStatus(newStatus)" @drop="fileDrop" @dragover.prevent="fileDrag"></textarea> </div> <div class="attachments"> <div class="attachment" v-for="file in newStatus.files"> @@ -79,6 +79,7 @@ form textarea { border: solid; border-width: 1px; + border-color: silver; border-radius: 5px; line-height:16px; padding: 5px; |
