Browse Source

Update user management pages to improve text color consistency

pull/2426/head
GONCALOUNI 6 months ago
parent
commit
85a3acf891
3 changed files with 6 additions and 6 deletions
  1. 4
      frontend/pages/delete-user.vue
  2. 6
      frontend/pages/edit-user.vue
  3. 2
      frontend/pages/list-user.vue

4
frontend/pages/delete-user.vue

@ -6,7 +6,7 @@
<v-col cols="12" sm="10" md="8">
<v-card class="pa-0 overflow-hidden rounded-lg shadow-lg">
<v-sheet color="primary" class="py-4 px-6 rounded-t-lg">
<div class="text-h6 font-weight-medium text--white">
<div class="text-h6 font-weight-medium" style="color: white;">
Delete Users
</div>
</v-sheet>
@ -109,7 +109,7 @@
<v-dialog v-model="deleteDialog" max-width="500px">
<v-card>
<v-sheet color="primary" class="py-4 px-6 rounded-t-lg">
<div class="text-h6 font-weight-medium text--white">
<div class="text-h6 font-weight-medium" style="color: white;">
Delete User: {{ deletingUser.username || 'User' }}
</div>
</v-sheet>

6
frontend/pages/edit-user.vue

@ -6,7 +6,7 @@
<v-col cols="12" sm="10" md="8">
<v-card class="pa-0 overflow-hidden rounded-lg shadow-lg">
<v-sheet color="primary" class="py-4 px-6 rounded-t-lg">
<div class="text-h6 font-weight-medium text--white">
<div class="text-h6 font-weight-medium" style="color: white;">
Edit Users
</div>
</v-sheet>
@ -113,8 +113,8 @@
<v-dialog v-model="editDialog" max-width="500px">
<v-card>
<v-sheet color="primary" class="py-4 px-6 rounded-t-lg">
<div class="text-h6 font-weight-medium text--white">
Edit User: {{ editingUser.username || 'New User' }}
<div class="text-h6" style="color: white;">
Edit User: {{ editingUser.username || 'User' }}
</div>
</v-sheet>
<v-card-text class="pa-4">

2
frontend/pages/list-user.vue

@ -6,7 +6,7 @@
<v-col cols="12" sm="10" md="8">
<v-card class="pa-0 overflow-hidden rounded-lg shadow-lg">
<v-sheet color="primary" class="py-4 px-6 rounded-t-lg">
<div class="text-h6 font-weight-medium text--white">
<div class="text-h6 font-weight-medium" style="color: white;">
All Users
</div>
</v-sheet>

Loading…
Cancel
Save