Global color schema, remove name and register number access in preferences, add alert in first startup wizard

This commit is contained in:
2024-11-26 20:13:54 +01:00
parent 51a2599545
commit 1a4b438191
26 changed files with 68 additions and 85 deletions

View File

@@ -18,7 +18,7 @@ const accountStore = useAccountStore()
<v-col class="d-flex justify-center align-center">
<outlined-button
prepend-icon="mdi-delete"
color="red"
color="error"
:loading="accountStore.fetchInProgress"
@click="showConfirmDialog = true"
>
@@ -29,7 +29,7 @@ const accountStore = useAccountStore()
<v-col class="d-flex justify-center align-center">
<outlined-button
prepend-icon="mdi-content-save"
color="green"
color="success"
:loading="accountStore.fetchInProgress"
@click="accountStore.updateAccount()"
>

View File

@@ -81,7 +81,7 @@ const accountStore = useAccountStore()
<v-col class="d-flex justify-center align-center">
<outlined-button
@click="accountStore.removeAddress(address)"
color="red"
color="error"
prepend-icon="mdi-delete"
>
{{ $t('misc.actions.remove') }}
@@ -102,7 +102,7 @@ const accountStore = useAccountStore()
<outlined-button
@click="accountStore.userAccount.addresses.push(new AddressModel())"
prepend-icon="mdi-plus"
color="green"
color="success"
>
{{ $t('misc.actions.add') }}
</outlined-button>

View File

@@ -17,7 +17,7 @@ const accountStore = useAccountStore()
<v-row>
<v-col>
<card-view-one-line
color="amber"
color="warning"
prepend-icon="mdi-alert"
:title="$t('account.noRealPaymentsNeeded')"
/>
@@ -60,7 +60,7 @@ const accountStore = useAccountStore()
<v-col class="d-flex justify-center align-center">
<outlined-button
@click="accountStore.removePayment(payment)"
color="red"
color="error"
prepend-icon="mdi-delete"
>
{{ $t('misc.actions.remove') }}
@@ -88,7 +88,7 @@ const accountStore = useAccountStore()
<outlined-button
@click="accountStore.userAccount.payments.push(new PaymentModel())"
prepend-icon="mdi-plus"
color="green"
color="success"
>
{{ $t('misc.actions.add') }}
</outlined-button>

View File

@@ -69,7 +69,7 @@ async function startLogin() {
append-icon="mdi-arrow-right"
@click="startLogin"
:loading="accountStore.fetchInProgress"
color="green"
color="success"
id="btn-login"
>
{{ $t('account.login.login') }}

View File

@@ -75,6 +75,7 @@ async function registerAccount() {
prepend-icon="mdi-account-plus"
@click="registerAccount"
:loading="accountStore.fetchInProgress"
color="success"
>
{{ $t('account.register') }}
</outlined-button>