mirror of
https://github.com/wekan/wekan.git
synced 2025-09-22 01:50:48 +02:00

Added filtering of Admin Panel/People/People: All Users/Locked Users Only/Active/Not Active. Added visual indicators: red lock icon for locked users, green check for active users, and red X for inactive users. Added "Unlock All" button to quickly unlock all brute force locked users. Added ability to toggle user active status directly from the People page. Moved lockout settings from environment variables to database so admins can configure the lockout thresholds directly in the UI. Thanks to xet7.
47 lines
664 B
CSS
47 lines
664 B
CSS
.text-red {
|
|
color: #e74c3c;
|
|
}
|
|
|
|
td i.fa-lock.text-red,
|
|
li i.fa-lock.text-red {
|
|
margin-right: 5px;
|
|
}
|
|
|
|
.locked-users-table {
|
|
width: 100%;
|
|
border-collapse: collapse;
|
|
margin: 15px 0;
|
|
}
|
|
|
|
.locked-users-table th,
|
|
.locked-users-table td {
|
|
padding: 8px;
|
|
text-align: left;
|
|
border-bottom: 1px solid #ddd;
|
|
}
|
|
|
|
.locked-users-table th {
|
|
background-color: #f2f2f2;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.locked-users-table tr:hover {
|
|
background-color: #f5f5f5;
|
|
}
|
|
|
|
.loading-indicator {
|
|
padding: 10px;
|
|
text-align: center;
|
|
}
|
|
|
|
.loading-indicator i {
|
|
margin-right: 5px;
|
|
}
|
|
|
|
.locked-users-settings {
|
|
padding: 0 10px;
|
|
}
|
|
|
|
button.js-unlock-all-users {
|
|
margin-bottom: 20px;
|
|
}
|