add .input class to all inputs

This commit is contained in:
Henry Jameson 2024-02-07 15:53:49 +02:00
commit d2a74ea1a2
41 changed files with 108 additions and 98 deletions

View file

@ -67,7 +67,7 @@
<textarea
id="muteWords"
v-model="muteWordsString"
class="resize-height"
class="input resize-height"
/>
<div>{{ $t('settings.filtering_explanation') }}</div>
</li>

View file

@ -12,7 +12,7 @@
<input
id="username"
v-model="newName"
class="name-changer"
class="input name-changer"
v-bind="propsToNative(inputProps)"
>
</template>
@ -26,7 +26,7 @@
<template #default="inputProps">
<textarea
v-model="newBio"
class="bio resize-height"
class="input bio resize-height"
v-bind="propsToNative(inputProps)"
/>
</template>
@ -47,7 +47,7 @@
id="birthday"
v-model="newBirthday"
type="date"
class="birthday-input"
class="input birthday-input"
>
<Checkbox v-model="showBirthday">
{{ $t('settings.birthday.show_birthday') }}
@ -71,6 +71,7 @@
v-model="newFields[i].name"
:placeholder="$t('settings.profile_fields.name')"
v-bind="propsToNative(inputProps)"
class="input"
>
</template>
</EmojiInput>
@ -85,6 +86,7 @@
v-model="newFields[i].value"
:placeholder="$t('settings.profile_fields.value')"
v-bind="propsToNative(inputProps)"
class="input"
>
</template>
</EmojiInput>
@ -192,6 +194,7 @@
<input
type="file"
@change="uploadFile('banner', $event)"
class="input"
>
</div>
<FAIcon
@ -234,6 +237,7 @@
<input
type="file"
@change="uploadFile('background', $event)"
class="input"
>
</div>
<FAIcon

View file

@ -99,12 +99,14 @@
<input
v-model="otpConfirmToken"
type="text"
class="input"
>
<p>{{ $t('settings.enter_current_password_to_confirm') }}:</p>
<input
v-model="currentPassword"
type="password"
class="input"
>
<div class="confirm-otp-actions">
<button

View file

@ -30,6 +30,7 @@
<input
v-model="currentPassword"
type="password"
class="input"
>
</confirm>
<div

View file

@ -8,6 +8,7 @@
v-model="newEmail"
type="email"
autocomplete="email"
class="input"
>
</div>
<div>
@ -16,6 +17,7 @@
v-model="changeEmailPassword"
type="password"
autocomplete="current-password"
class="input"
>
</div>
<button
@ -40,6 +42,7 @@
<input
v-model="changePasswordInputs[0]"
type="password"
class="input"
>
</div>
<div>
@ -47,6 +50,7 @@
<input
v-model="changePasswordInputs[1]"
type="password"
class="input"
>
</div>
<div>
@ -54,6 +58,7 @@
<input
v-model="changePasswordInputs[2]"
type="password"
class="input"
>
</div>
<button
@ -155,6 +160,7 @@
</i18n-t>
<input
v-model="addAliasTarget"
class="input"
>
</div>
<button
@ -187,6 +193,7 @@
</i18n-t>
<input
v-model="moveAccountTarget"
class="input"
>
</div>
<div>
@ -195,6 +202,7 @@
v-model="moveAccountPassword"
type="password"
autocomplete="current-password"
class="input"
>
</div>
<button
@ -222,6 +230,7 @@
<input
v-model="deleteAccountConfirmPasswordInput"
type="password"
class="input"
>
<button
class="btn button-default"

View file

@ -95,6 +95,7 @@
<input
:value="$t('settings.style.preview.input')"
type="text"
class="input"
>
<div class="actions">
@ -103,6 +104,7 @@
id="preview_checkbox"
checked="very yes"
type="checkbox"
class="input"
>
<label for="preview_checkbox">{{ $t('settings.style.preview.checkbox') }}</label>
</span>