diff --git a/frontend/components/Domain/Recipe/RecipeDialogSearch.vue b/frontend/components/Domain/Recipe/RecipeDialogSearch.vue index df78a36d2..40e354868 100644 --- a/frontend/components/Domain/Recipe/RecipeDialogSearch.vue +++ b/frontend/components/Domain/Recipe/RecipeDialogSearch.vue @@ -17,7 +17,7 @@ id="arrow-search" v-model="search.query.value" autofocus - variant="solo-filled" + variant="solo" flat autocomplete="off" bg-color="primary-lighten-1" diff --git a/frontend/components/Domain/Recipe/RecipeOrganizerSelector.vue b/frontend/components/Domain/Recipe/RecipeOrganizerSelector.vue index 7d62ebd53..269f1060f 100644 --- a/frontend/components/Domain/Recipe/RecipeOrganizerSelector.vue +++ b/frontend/components/Domain/Recipe/RecipeOrganizerSelector.vue @@ -9,7 +9,7 @@ closable-chips item-title="name" multiple - variant="underlined" + variant="outlined" :prepend-inner-icon="icon" :append-icon="$globals.icons.create" return-object diff --git a/frontend/components/Domain/User/UserRegistrationForm.vue b/frontend/components/Domain/User/UserRegistrationForm.vue index a216f8f9d..7677f4f57 100644 --- a/frontend/components/Domain/User/UserRegistrationForm.vue +++ b/frontend/components/Domain/User/UserRegistrationForm.vue @@ -86,9 +86,8 @@ import { usePasswordField } from "~/composables/use-passwords"; import UserPasswordStrength from "~/components/Domain/User/UserPasswordStrength.vue"; const inputAttrs = { - rounded: true, validateOnBlur: true, - class: "rounded-lg pb-1", + class: "pb-1", variant: "solo-filled" as any, }; diff --git a/frontend/components/global/AutoForm.vue b/frontend/components/global/AutoForm.vue index d837ce2f1..d1d259b01 100644 --- a/frontend/components/global/AutoForm.vue +++ b/frontend/components/global/AutoForm.vue @@ -10,7 +10,6 @@ @@ -75,7 +74,6 @@ :disabled="(inputField.disableUpdate && updateMode) || (!updateMode && inputField.disableCreate) || (disabledFields && disabledFields.includes(inputField.varName))" variant="solo-filled" flat - class="rounded-lg" rows="3" auto-grow density="comfortable" @@ -95,7 +93,6 @@ :disabled="(inputField.disableUpdate && updateMode) || (!updateMode && inputField.disableCreate) || (disabledFields && disabledFields.includes(inputField.varName))" variant="solo-filled" flat - class="rounded-lg" :prepend-icon="inputField.icons ? modelValue[inputField.varName] : null" :label="inputField.label" :name="inputField.varName" diff --git a/frontend/pages/admin/manage/households/[id].vue b/frontend/pages/admin/manage/households/[id].vue index 82de3d373..a0a2a789b 100644 --- a/frontend/pages/admin/manage/households/[id].vue +++ b/frontend/pages/admin/manage/households/[id].vue @@ -33,7 +33,6 @@ :items="groups" variant="solo-filled" flat - class="rounded-lg" item-title="name" item-value="id" :return-object="false" diff --git a/frontend/pages/admin/manage/households/index.vue b/frontend/pages/admin/manage/households/index.vue index 3e9e4156b..2f6b306de 100644 --- a/frontend/pages/admin/manage/households/index.vue +++ b/frontend/pages/admin/manage/households/index.vue @@ -12,8 +12,6 @@ v-if="groups" v-model="createHouseholdForm.data.groupId" :items="groups" - rounded - class="rounded-lg" item-title="name" item-value="id" :return-object="false" diff --git a/frontend/pages/admin/manage/users/create.vue b/frontend/pages/admin/manage/users/create.vue index d2b4c8d6a..7009b68a4 100644 --- a/frontend/pages/admin/manage/users/create.vue +++ b/frontend/pages/admin/manage/users/create.vue @@ -24,8 +24,6 @@ v-if="groups" v-model="selectedGroupId" :items="groups" - rounded - class="rounded-lg" item-title="name" item-value="id" :return-object="false" @@ -37,8 +35,6 @@ v-model="newUserData.household" :disabled="!selectedGroupId" :items="households" - rounded - class="rounded-lg" item-title="name" item-value="name" :return-object="false" diff --git a/frontend/pages/forgot-password.vue b/frontend/pages/forgot-password.vue index 11d0c661a..95a5a4169 100644 --- a/frontend/pages/forgot-password.vue +++ b/frontend/pages/forgot-password.vue @@ -17,10 +17,9 @@