From c8b5ada5b9054863d2e695ae8cc1c298dcd5a13e Mon Sep 17 00:00:00 2001 From: Stefan Zermatten Date: Mon, 12 Apr 2021 14:21:50 +0200 Subject: [PATCH] Changed all form input fields to outlined style instead of filled --- app/imports/ui/components/global/DatePicker.vue | 2 +- app/imports/ui/components/global/SmartCombobox.vue | 2 +- app/imports/ui/components/global/SmartSelect.vue | 2 +- app/imports/ui/components/global/TextArea.vue | 2 +- app/imports/ui/components/global/TextField.vue | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/app/imports/ui/components/global/DatePicker.vue b/app/imports/ui/components/global/DatePicker.vue index 3608a5c0..808eb998 100644 --- a/app/imports/ui/components/global/DatePicker.vue +++ b/app/imports/ui/components/global/DatePicker.vue @@ -16,7 +16,7 @@ :loading="loading" :error-messages="errors" :disabled="isDisabled" - filled + outlined v-on="on" @focus="focused = true" @blur="focused = false" diff --git a/app/imports/ui/components/global/SmartCombobox.vue b/app/imports/ui/components/global/SmartCombobox.vue index 2406ef82..102931d0 100644 --- a/app/imports/ui/components/global/SmartCombobox.vue +++ b/app/imports/ui/components/global/SmartCombobox.vue @@ -7,7 +7,7 @@ :menu-props="{auto: true, lazy: true}" :search-input.sync="searchInput" :disabled="isDisabled" - filled + outlined @change="customChange" @focus="focused = true" @blur="focused = false" diff --git a/app/imports/ui/components/global/SmartSelect.vue b/app/imports/ui/components/global/SmartSelect.vue index 2584492e..8b48ad6e 100644 --- a/app/imports/ui/components/global/SmartSelect.vue +++ b/app/imports/ui/components/global/SmartSelect.vue @@ -6,7 +6,7 @@ :value="safeValue" :menu-props="{auto: true, lazy: true}" :disabled="isDisabled" - filled + outlined @change="change" @focus="focused = true" @blur="focused = false" diff --git a/app/imports/ui/components/global/TextArea.vue b/app/imports/ui/components/global/TextArea.vue index 4775bb3c..40722679 100644 --- a/app/imports/ui/components/global/TextArea.vue +++ b/app/imports/ui/components/global/TextArea.vue @@ -6,7 +6,7 @@ :value="safeValue" :disabled="isDisabled" :auto-grow="autoGrow" - filled + outlined @input="input" @focus="focused = true" @blur="focused = false" diff --git a/app/imports/ui/components/global/TextField.vue b/app/imports/ui/components/global/TextField.vue index 0347a59c..7ff7617f 100644 --- a/app/imports/ui/components/global/TextField.vue +++ b/app/imports/ui/components/global/TextField.vue @@ -6,7 +6,7 @@ :error-messages="errors" :value="safeValue" :disabled="isDisabled" - :filled="!regular" + :outlined="!regular" @input="input" @focus="focused = true" @blur="focused = false"