|
|
@@ -1,8 +1,8 @@
|
|
|
<template>
|
|
|
<div>
|
|
|
<div class="explanation">
|
|
|
- <div class="px-6 d-flex flex-row align-center">
|
|
|
- <v-icon class="theme-primary">fa fa-info</v-icon>
|
|
|
+ <div class="px-4 d-flex flex-row align-center">
|
|
|
+ <v-icon class="theme-info">fa fa-info</v-icon>
|
|
|
</div>
|
|
|
<div class="px-2">
|
|
|
{{ $t('super_admin_explanation_text') }}
|
|
|
@@ -20,17 +20,16 @@
|
|
|
<tbody>
|
|
|
<tr>
|
|
|
<td>{{ $t('username') }} :</td>
|
|
|
- <td>{{ adminAccess.username }}</td>
|
|
|
+ <td><b>{{ adminAccess.username }}</b></td>
|
|
|
</tr>
|
|
|
</tbody>
|
|
|
</v-table>
|
|
|
|
|
|
- <UiInputText
|
|
|
+ <UiInputEmail
|
|
|
v-model="adminAccess.email"
|
|
|
field="email"
|
|
|
- :rules="rules()"
|
|
|
+ :label="$t('associated_email')"
|
|
|
class="mx-4"
|
|
|
- variant="underlined"
|
|
|
/>
|
|
|
</UiForm>
|
|
|
<span v-else>{{ $t('no_admin_access_recorded') }}</span>
|
|
|
@@ -70,23 +69,22 @@ const rules = () => [
|
|
|
.explanation {
|
|
|
display: flex;
|
|
|
flex-direction: row;
|
|
|
- padding: 60px 26px;
|
|
|
+ margin: 32px;
|
|
|
+ padding: 8px 4px;
|
|
|
+ border-radius: 6px;
|
|
|
text-align: justify;
|
|
|
- color: rgb(var(--v-theme-neutral-strong));
|
|
|
+ color: rgb(var(--v-theme-info));
|
|
|
+ border: solid 1px rgb(var(--v-theme-info));
|
|
|
|
|
|
.v-icon {
|
|
|
- background-color: rgb(var(--v-theme-primary));
|
|
|
+ color: rgb(var(--v-theme-info));
|
|
|
font-size: 22px;
|
|
|
border-radius: 16px;
|
|
|
- margin: 3px;
|
|
|
+ margin: 3px 1px;
|
|
|
padding: 3px;
|
|
|
height: 28px;
|
|
|
width: 28px;
|
|
|
}
|
|
|
-
|
|
|
- div:first-child {
|
|
|
- border-right: solid 1px rgb(var(--v-theme-primary));
|
|
|
- }
|
|
|
}
|
|
|
|
|
|
.v-table td:first-child {
|