add accordion macro, new user list view

This commit is contained in:
2025-08-04 02:17:27 +03:00
parent abcc10654b
commit c7f29c1cd4
5 changed files with 115 additions and 6 deletions

View File

@ -570,6 +570,28 @@ input[type=text]:focus, input[type=password]:focus, textarea:focus, select:focus
border-collapse: collapse;
}
.users-table {
border-collapse: collapse;
width: 100%;
margin: 10px 0;
overflow: hidden;
}
.users-table tr th {
background-color: #beb1ce;
padding: 5px 0;
}
.users-table tr td {
background-color: rgb(177, 206, 204.5);
padding: 5px 0;
text-align: center;
}
.users-table .small {
width: 250px;
}
.topic {
display: grid;
grid-template-columns: 1.5fr 96px;