more underlined fields

This commit is contained in:
Kuchenpirat 2025-06-03 12:39:03 +00:00
commit 43c748788b
3 changed files with 10 additions and 0 deletions

View file

@ -25,6 +25,7 @@
:label="$t('general.owner')" :label="$t('general.owner')"
hide-details hide-details
:disabled="!canEditOwner" :disabled="!canEditOwner"
variant="underlined"
> >
<template #prepend> <template #prepend>
<UserAvatar <UserAvatar

View file

@ -5,6 +5,7 @@
v-if="isEditForm" v-if="isEditForm"
v-model="recipe.orgURL" v-model="recipe.orgURL"
class="mt-10" class="mt-10"
variant="underlined"
:label="$t('recipe.original-url')" :label="$t('recipe.original-url')"
/> />
<v-btn <v-btn

View file

@ -5,6 +5,7 @@
:label="$t('recipe.recipe-name')" :label="$t('recipe.recipe-name')"
:rules="[validators.required]" :rules="[validators.required]"
density="compact" density="compact"
variant="underlined"
/> />
<v-container class="ma-0 pa-0"> <v-container class="ma-0 pa-0">
<v-row> <v-row>
@ -15,6 +16,7 @@
hide-spin-buttons hide-spin-buttons
density="compact" density="compact"
:label="$t('recipe.servings')" :label="$t('recipe.servings')"
variant="underlined"
@update:model-value="validateInput($event, 'recipeServings')" @update:model-value="validateInput($event, 'recipeServings')"
/> />
</v-col> </v-col>
@ -25,6 +27,7 @@
hide-spin-buttons hide-spin-buttons
density="compact" density="compact"
:label="$t('recipe.yield')" :label="$t('recipe.yield')"
variant="underlined"
@update:model-value="validateInput($event, 'recipeYieldQuantity')" @update:model-value="validateInput($event, 'recipeYieldQuantity')"
/> />
</v-col> </v-col>
@ -32,6 +35,7 @@
<v-text-field v-model="recipe.recipeYield" <v-text-field v-model="recipe.recipeYield"
density="compact" density="compact"
:label="$t('recipe.yield-text')" :label="$t('recipe.yield-text')"
variant="underlined"
/> />
</v-col> </v-col>
</v-row> </v-row>
@ -43,14 +47,17 @@
<v-text-field v-model="recipe.totalTime" <v-text-field v-model="recipe.totalTime"
:label="$t('recipe.total-time')" :label="$t('recipe.total-time')"
density="compact" density="compact"
variant="underlined"
/> />
<v-text-field v-model="recipe.prepTime" <v-text-field v-model="recipe.prepTime"
:label="$t('recipe.prep-time')" :label="$t('recipe.prep-time')"
density="compact" density="compact"
variant="underlined"
/> />
<v-text-field v-model="recipe.performTime" <v-text-field v-model="recipe.performTime"
:label="$t('recipe.perform-time')" :label="$t('recipe.perform-time')"
density="compact" density="compact"
variant="underlined"
/> />
</div> </div>
<v-textarea v-model="recipe.description" <v-textarea v-model="recipe.description"
@ -58,6 +65,7 @@
min-height="100" min-height="100"
:label="$t('recipe.description')" :label="$t('recipe.description')"
density="compact" density="compact"
variant="underlined"
/> />
</div> </div>
</template> </template>