mirror of
https://github.com/hay-kot/mealie.git
synced 2025-08-22 22:43:34 -07:00
remove rounded on text-fields
This commit is contained in:
parent
54e6cd92d1
commit
07c16b3be4
9 changed files with 15 additions and 30 deletions
|
@ -17,7 +17,7 @@
|
||||||
id="arrow-search"
|
id="arrow-search"
|
||||||
v-model="search.query.value"
|
v-model="search.query.value"
|
||||||
autofocus
|
autofocus
|
||||||
variant="solo-filled"
|
variant="solo"
|
||||||
flat
|
flat
|
||||||
autocomplete="off"
|
autocomplete="off"
|
||||||
bg-color="primary-lighten-1"
|
bg-color="primary-lighten-1"
|
||||||
|
|
|
@ -9,7 +9,7 @@
|
||||||
closable-chips
|
closable-chips
|
||||||
item-title="name"
|
item-title="name"
|
||||||
multiple
|
multiple
|
||||||
variant="underlined"
|
variant="outlined"
|
||||||
:prepend-inner-icon="icon"
|
:prepend-inner-icon="icon"
|
||||||
:append-icon="$globals.icons.create"
|
:append-icon="$globals.icons.create"
|
||||||
return-object
|
return-object
|
||||||
|
|
|
@ -86,9 +86,8 @@ import { usePasswordField } from "~/composables/use-passwords";
|
||||||
import UserPasswordStrength from "~/components/Domain/User/UserPasswordStrength.vue";
|
import UserPasswordStrength from "~/components/Domain/User/UserPasswordStrength.vue";
|
||||||
|
|
||||||
const inputAttrs = {
|
const inputAttrs = {
|
||||||
rounded: true,
|
|
||||||
validateOnBlur: true,
|
validateOnBlur: true,
|
||||||
class: "rounded-lg pb-1",
|
class: "pb-1",
|
||||||
variant: "solo-filled" as any,
|
variant: "solo-filled" as any,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -10,7 +10,6 @@
|
||||||
<v-col
|
<v-col
|
||||||
v-for="(inputField, index) in items"
|
v-for="(inputField, index) in items"
|
||||||
:key="index"
|
:key="index"
|
||||||
class="py-0"
|
|
||||||
cols="12"
|
cols="12"
|
||||||
sm="12"
|
sm="12"
|
||||||
>
|
>
|
||||||
|
@ -75,7 +74,6 @@
|
||||||
:disabled="(inputField.disableUpdate && updateMode) || (!updateMode && inputField.disableCreate) || (disabledFields && disabledFields.includes(inputField.varName))"
|
:disabled="(inputField.disableUpdate && updateMode) || (!updateMode && inputField.disableCreate) || (disabledFields && disabledFields.includes(inputField.varName))"
|
||||||
variant="solo-filled"
|
variant="solo-filled"
|
||||||
flat
|
flat
|
||||||
class="rounded-lg"
|
|
||||||
rows="3"
|
rows="3"
|
||||||
auto-grow
|
auto-grow
|
||||||
density="comfortable"
|
density="comfortable"
|
||||||
|
@ -95,7 +93,6 @@
|
||||||
:disabled="(inputField.disableUpdate && updateMode) || (!updateMode && inputField.disableCreate) || (disabledFields && disabledFields.includes(inputField.varName))"
|
:disabled="(inputField.disableUpdate && updateMode) || (!updateMode && inputField.disableCreate) || (disabledFields && disabledFields.includes(inputField.varName))"
|
||||||
variant="solo-filled"
|
variant="solo-filled"
|
||||||
flat
|
flat
|
||||||
class="rounded-lg"
|
|
||||||
:prepend-icon="inputField.icons ? modelValue[inputField.varName] : null"
|
:prepend-icon="inputField.icons ? modelValue[inputField.varName] : null"
|
||||||
:label="inputField.label"
|
:label="inputField.label"
|
||||||
:name="inputField.varName"
|
:name="inputField.varName"
|
||||||
|
|
|
@ -33,7 +33,6 @@
|
||||||
:items="groups"
|
:items="groups"
|
||||||
variant="solo-filled"
|
variant="solo-filled"
|
||||||
flat
|
flat
|
||||||
class="rounded-lg"
|
|
||||||
item-title="name"
|
item-title="name"
|
||||||
item-value="id"
|
item-value="id"
|
||||||
:return-object="false"
|
:return-object="false"
|
||||||
|
|
|
@ -12,8 +12,6 @@
|
||||||
v-if="groups"
|
v-if="groups"
|
||||||
v-model="createHouseholdForm.data.groupId"
|
v-model="createHouseholdForm.data.groupId"
|
||||||
:items="groups"
|
:items="groups"
|
||||||
rounded
|
|
||||||
class="rounded-lg"
|
|
||||||
item-title="name"
|
item-title="name"
|
||||||
item-value="id"
|
item-value="id"
|
||||||
:return-object="false"
|
:return-object="false"
|
||||||
|
|
|
@ -24,8 +24,6 @@
|
||||||
v-if="groups"
|
v-if="groups"
|
||||||
v-model="selectedGroupId"
|
v-model="selectedGroupId"
|
||||||
:items="groups"
|
:items="groups"
|
||||||
rounded
|
|
||||||
class="rounded-lg"
|
|
||||||
item-title="name"
|
item-title="name"
|
||||||
item-value="id"
|
item-value="id"
|
||||||
:return-object="false"
|
:return-object="false"
|
||||||
|
@ -37,8 +35,6 @@
|
||||||
v-model="newUserData.household"
|
v-model="newUserData.household"
|
||||||
:disabled="!selectedGroupId"
|
:disabled="!selectedGroupId"
|
||||||
:items="households"
|
:items="households"
|
||||||
rounded
|
|
||||||
class="rounded-lg"
|
|
||||||
item-title="name"
|
item-title="name"
|
||||||
item-value="name"
|
item-value="name"
|
||||||
:return-object="false"
|
:return-object="false"
|
||||||
|
|
|
@ -17,10 +17,9 @@
|
||||||
<v-form @submit.prevent="requestLink()">
|
<v-form @submit.prevent="requestLink()">
|
||||||
<v-text-field
|
<v-text-field
|
||||||
v-model="email"
|
v-model="email"
|
||||||
variant="filled"
|
:prepend-inner-icon="$globals.icons.email"
|
||||||
rounded
|
variant="solo-filled"
|
||||||
autofocus
|
flat autofocus
|
||||||
class="rounded-lg"
|
|
||||||
name="login"
|
name="login"
|
||||||
:label="$t('user.email')"
|
:label="$t('user.email')"
|
||||||
type="text"
|
type="text"
|
||||||
|
|
|
@ -17,21 +17,19 @@
|
||||||
<v-form @submit.prevent="requestLink()">
|
<v-form @submit.prevent="requestLink()">
|
||||||
<v-text-field
|
<v-text-field
|
||||||
v-model="email"
|
v-model="email"
|
||||||
:prepend-icon="$globals.icons.email"
|
:prepend-inner-icon="$globals.icons.email"
|
||||||
variant="filled"
|
variant="solo-filled"
|
||||||
rounded
|
flat
|
||||||
autofocus
|
autofocus
|
||||||
class="rounded-lg"
|
|
||||||
name="login"
|
name="login"
|
||||||
:label="$t('user.email')"
|
:label="$t('user.email')"
|
||||||
type="text"
|
type="text"
|
||||||
/>
|
/>
|
||||||
<v-text-field
|
<v-text-field
|
||||||
v-model="password"
|
v-model="password"
|
||||||
variant="filled"
|
variant="solo-filled"
|
||||||
rounded
|
flat
|
||||||
class="rounded-lg"
|
:prepend-inner-icon="$globals.icons.lock"
|
||||||
:prepend-icon="$globals.icons.lock"
|
|
||||||
name="password"
|
name="password"
|
||||||
:label="$t('user.password')"
|
:label="$t('user.password')"
|
||||||
type="password"
|
type="password"
|
||||||
|
@ -39,11 +37,10 @@
|
||||||
/>
|
/>
|
||||||
<v-text-field
|
<v-text-field
|
||||||
v-model="passwordConfirm"
|
v-model="passwordConfirm"
|
||||||
variant="filled"
|
variant="solo-filled"
|
||||||
rounded
|
flat
|
||||||
validate-on="blur"
|
validate-on="blur"
|
||||||
class="rounded-lg"
|
:prepend-inner-icon="$globals.icons.lock"
|
||||||
:prepend-icon="$globals.icons.lock"
|
|
||||||
name="password"
|
name="password"
|
||||||
:label="$t('user.confirm-password')"
|
:label="$t('user.confirm-password')"
|
||||||
type="password"
|
type="password"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue