Feature: Added brute force login protection settings to Admin Panel/People/Locked Users. Part 2.

Thanks to xet7 !
This commit is contained in:
Lauri Ojansivu 2025-08-08 12:36:17 +03:00
parent 51b0544752
commit 1c47f98f59
3 changed files with 69 additions and 5 deletions

View file

@ -117,19 +117,22 @@ table tr:nth-child(even) {
.unlock-all-btn {
margin-left: 15px;
background-color: #e67e22;
color: white;
border: none;
background-color: white;
color: #4d4d4d;
border: 1px solid rgba(0,0,0,.15);
border-radius: 2px;
padding: 5px 10px;
padding: 0 10px;
cursor: pointer;
display: flex;
align-items: center;
gap: 5px;
height: 28px;
min-width: 90px;
/* box-shadow: 0 1px 6px rgba(0,0,0,.3); */
}
.unlock-all-btn:hover {
background-color: #d35400;
background-color: #f2f2f2;
}
.account-active-status {
@ -173,3 +176,7 @@ table tr:nth-child(even) {
.js-toggle-lock-status {
cursor: pointer;
}
.unlock-all-btn .fa {
color: #4d4d4d;
}