Fix: Add truncate-table endpoint and improve dark mode visibility for usernames

- Added missing /api/maintenance/truncate-table endpoint to fix 404 error
- Fixed dark mode visibility issue for usernames in Current Users table
- Added explicit color styling for username strong tags in both light and dark modes
This commit is contained in:
Quality App System
2026-01-15 19:43:46 +02:00
parent f590d9006c
commit ce9563794a
2 changed files with 89 additions and 0 deletions

View File

@@ -245,6 +245,15 @@
background-color: rgba(255, 255, 255, 0.075) !important;
}
/* Theme-aware username styling */
body.light-mode .user-management-page .table td strong {
color: #000 !important;
}
body.dark-mode .user-management-page .table td strong {
color: #fff !important;
}
/* Theme-aware form elements */
.user-management-page .form-control {
border: 1px solid #ced4da !important;