Enable blocking and unblocking of users.

This commit is contained in:
Jens Luedicke
2025-06-28 11:10:22 +02:00
parent b2861686ea
commit 99765d5728
5 changed files with 75 additions and 11 deletions

View File

@@ -503,4 +503,23 @@ input[type="time"]::-webkit-datetime-edit {
.admin-card p {
color: #666;
margin-bottom: 20px;
}
/* User status badges */
.status-badge {
display: inline-block;
padding: 3px 8px;
border-radius: 12px;
font-size: 0.85em;
font-weight: 500;
}
.status-active {
background-color: #d4edda;
color: #155724;
}
.status-blocked {
background-color: #f8d7da;
color: #721c24;
}