diff options
| author | Henry Jameson <me@hjkos.com> | 2024-02-07 15:53:49 +0200 |
|---|---|---|
| committer | Henry Jameson <me@hjkos.com> | 2024-02-07 15:53:49 +0200 |
| commit | d2a74ea1a2965eb38609bb8029a41b45beab89ce (patch) | |
| tree | 47881b435bc3f2c83d031ee5ca34492bd19551a7 /src/components/post_status_form | |
| parent | c34590c43983711152a843a2e36b991a5fe3bcdf (diff) | |
add .input class to all inputs
Diffstat (limited to 'src/components/post_status_form')
| -rw-r--r-- | src/components/post_status_form/post_status_form.vue | 8 |
1 files changed, 5 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 9b108a5a..7dd9efb4 100644 --- a/src/components/post_status_form/post_status_form.vue +++ b/src/components/post_status_form/post_status_form.vue @@ -161,7 +161,7 @@ v-model="newStatus.spoilerText" enable-emoji-picker :suggest="emojiSuggestor" - class="form-control" + class="input form-control" > <template #default="inputProps"> <input @@ -180,7 +180,7 @@ v-model="newStatus.status" :suggest="emojiUserSuggestor" :placement="emojiPickerPlacement" - class="form-control main-input" + class="input form-control main-input" enable-emoji-picker hide-emoji-button :newline-on-ctrl-enter="submitOnEnter" @@ -237,7 +237,7 @@ <Select id="post-content-type" v-model="newStatus.contentType" - class="form-control" + class="input form-control" :attrs="{ 'aria-label': $t('post_status.content_type_selection') }" > <option @@ -591,6 +591,8 @@ height: calc(var(--post-line-height) * 1em); min-height: calc(var(--post-line-height) * 1em); resize: none; + text: inherit; + background: transparent; &.scrollable-form { overflow-y: auto; |
