Implementazione gestione utenti

This commit is contained in:
2026-04-10 11:54:04 +02:00
parent 504db2e5b5
commit 49d2614528
2 changed files with 211 additions and 1 deletions
+33 -1
View File
@@ -385,4 +385,36 @@ form button:hover {
display: contents;
margin: 0;
padding: 0;
}
}
/* Stili per role-select */
.role-select {
border: 1px solid #ddd;
border-radius: 4px;
cursor: pointer;
}
.role-select.role-user {
background-color: #e7f3ff;
color: #004085;
}
.role-select.role-admin {
background-color: #fff3cd;
color: #856404;
}
/* Stili per btn-reset */
.btn-reset {
background-color: #17a2b8;
color: white;
border: none;
border-radius: 4px;
cursor: pointer;
font-size: 12px;
margin-right: 5px;
}
.btn-reset:hover {
background-color: #138496;
}