This commit is contained in:
Andrey Cunha
2026-03-10 23:32:02 -03:00
parent b32415212f
commit 9a0ef21ec8
63 changed files with 4412 additions and 637 deletions
@@ -1,44 +1,46 @@
<div id="dashTabela_${instanceId}"
<div id="dashTabela_${instanceId}"
class="super-widget wcm-widget-class fluig-style-guide"
data-params="DashTabela.instance()">
<div class="dtb-card">
<div class="dtb-title">Detalhe das Auditorias</div>
<table class="table table-hover">
<div class="table-responsive">
<table class="table table-hover">
<thead>
<tr>
<th>Data Inicio</th>
<th>Prazo</th>
<th>Ciclo</th>
<th>Analista</th>
<th>Gestor</th>
<th>Loja</th>
<th>Status</th>
</tr>
</thead>
<thead>
<tr>
<th>Data Início</th>
<th>Data Limite</th>
<th>Ciclo</th>
<th>Auditor</th>
<th>Responsável Loja</th>
<th>Loja</th>
<th>Status</th>
</tr>
</thead>
<tbody id="lista_${instanceId}">
<tr>
<td colspan="7" class="text-center">Aguardando filtro...</td>
</tr>
</tbody>
</table>
</div>
<tbody id="lista_${instanceId}">
<tr>
<td colspan="7" class="text-center">Aguardando filtro...</td>
</tr>
</tbody>
</table>
<div class="dash-table-footer">
<div class="dash-page-size">
<label for="page_size_${instanceId}">Itens por página</label>
<select id="page_size_${instanceId}" class="form-control input-sm">
<option value="5" selected>5</option>
<option value="10">10</option>
<option value="20">20</option>
<option value="50">50</option>
</select>
</div>
<div id="page_info_${instanceId}" class="dash-page-info">Aguardando filtro</div>
<div class="dash-page-actions">
<button id="page_prev_${instanceId}" type="button" class="btn btn-default btn-sm">Anterior</button>
<button id="page_next_${instanceId}" type="button" class="btn btn-default btn-sm">Próxima</button>
<div class="dash-table-footer">
<div class="dash-page-size">
<label for="page_size_${instanceId}">Itens por pagina</label>
<select id="page_size_${instanceId}" class="form-control input-sm">
<option value="5" selected>5</option>
<option value="10">10</option>
<option value="20">20</option>
<option value="50">50</option>
</select>
</div>
<div id="page_info_${instanceId}" class="dash-page-info">Aguardando filtro</div>
<div class="dash-page-actions">
<button id="page_prev_${instanceId}" type="button" class="btn btn-default btn-sm">Anterior</button>
<button id="page_next_${instanceId}" type="button" class="btn btn-default btn-sm">Proxima</button>
</div>
</div>
</div>
</div>
</div>
@@ -1,8 +1,26 @@
div[id^="dashTabela_"] .dtb-card {
background: #ececed;
border-radius: 34px;
padding: 16px 20px;
}
div[id^="dashTabela_"] .dtb-title {
color: #004a6a;
font-size: 34px;
font-weight: 800;
text-align: center;
margin-bottom: 10px;
}
div[id^="dashTabela_"] table th,
div[id^="dashTabela_"] table td {
vertical-align: top;
}
div[id^="dashTabela_"] table th {
color: #0a4f70;
}
div[id^="dashTabela_"] table th:nth-child(1),
div[id^="dashTabela_"] table td:nth-child(1),
div[id^="dashTabela_"] table th:nth-child(2),
@@ -23,7 +41,7 @@ div[id^="dashTabela_"] .dash-table-footer {
justify-content: space-between;
gap: 10px;
padding-top: 8px;
border-top: 1px solid #eee;
border-top: 1px solid #d4d9dd;
}
div[id^="dashTabela_"] .dash-page-size {
@@ -44,10 +62,20 @@ div[id^="dashTabela_"] .dash-page-size select {
div[id^="dashTabela_"] .dash-page-info {
font-size: 12px;
color: #666;
color: #44525a;
}
div[id^="dashTabela_"] .dash-page-actions {
display: flex;
gap: 6px;
}
@media (max-width: 1300px) {
div[id^="dashTabela_"] .dtb-title {
font-size: 24px;
}
div[id^="dashTabela_"] .dash-table-footer {
flex-wrap: wrap;
}
}