fix: Atualiza valores dos checkboxes de responsabilidades no template do modal

This commit is contained in:
andersonid
2025-04-04 12:16:41 -03:00
parent d468f8ff39
commit 52a6bf9eb0
3 changed files with 76 additions and 62 deletions

View File

@@ -45,7 +45,12 @@
}
.table-hover tbody tr:hover {
background-color: var(--table-hover-bg);
background-color: var(--table-hover-bg) !important;
cursor: pointer;
}
.table-hover tbody tr {
transition: all 0.3s ease;
}
/* Botões de ação */
@@ -125,8 +130,8 @@
/* Badges */
.badge {
padding: 0.5em 0.75em;
font-weight: 500;
padding: 0.5em 0.8em;
}
.badge.bg-success {
@@ -415,4 +420,25 @@
input[type="date"]:focus {
border-color: var(--primary-color);
box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
}
/* Estilo para colunas ordenáveis */
th[data-sort] {
cursor: pointer;
user-select: none;
}
th[data-sort] i {
margin-left: 5px;
color: #ccc;
}
th[data-sort].sort-asc i,
th[data-sort].sort-desc i {
color: var(--primary-color);
}
/* Animação para linhas da tabela */
#militantesTable tbody tr {
transition: all 0.3s ease;
}