Skip to content

Commit

Permalink
fix: Correção de css em padrão criado de estilo para paginação e tabe…
Browse files Browse the repository at this point in the history
…las.
  • Loading branch information
mateussbh committed Jan 20, 2025
1 parent 5fcbd39 commit d50a027
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 16 deletions.
10 changes: 3 additions & 7 deletions src/pen_procedimento_expedido_listar.php
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
$strSumarioTabela = 'Tabela de Processos';
$strCaptionTabela = 'Processos';

$strResultado .= "<table width='99%' id='tblBlocos' class='infraTable' summary='{$strSumarioTabela}'>" . "\n";
$strResultado .= '<table width="99%" id="tblBlocos" class="infraTable infraTableResponsiva" summary="'.$strSumarioTabela.'">' . "\n";
$strResultado .= '<caption class="infraCaption">' . $objPaginaSEI->gerarCaptionTabela($strCaptionTabela, $numRegistros) . '</caption>';

$strResultado .= "<thead>";
Expand Down Expand Up @@ -205,7 +205,7 @@
}

.dataTables_paginate .paginate_button.current {
background-color: var(--color-primary-default);
background-color: var(--infra-esquema-cor-clara);
color: #fff;
}

Expand All @@ -214,13 +214,9 @@
position: absolute;
opacity: 0;
}
#frmProcedimentoExpedido th.infraTh {
color: #ECF0F1;
background: #155f9b;
}

#frmProcedimentoExpedido #tblBlocos_wrapper label:first-of-type{font-size: 12px;}
#frmProcedimentoExpedido #tblBlocos_wrapper select:first-of-type{font-size: 11px;}
#frmProcedimentoExpedido #tblBlocos{border-collapse: collapse;}

</style>
<?php $objPaginaSEI->montarJavaScript(); ?>
Expand Down
2 changes: 1 addition & 1 deletion src/pen_tramita_em_bloco_protocolo_listar.php
Original file line number Diff line number Diff line change
Expand Up @@ -269,7 +269,7 @@
}

.dataTables_paginate .paginate_button.current {
background-color: var(--color-primary-default);
background-color: var(--infra-esquema-cor-clara);
color: #fff;
}

Expand Down
12 changes: 4 additions & 8 deletions src/pen_tramite_bloco_listar.php
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@
$strSumarioTabela = 'Tabela de Blocos Tramitados.';
$strCaptionTabela = 'Blocos';

$strResultado = "<table width='99%' id='tblBlocos' class='infraTable' summary='{$strSumarioTabela}'>" . "\n";
$strResultado = '<table width="99%" id="tblBlocos" class="infraTable infraTableResponsiva" summary="'.$strSumarioTabela.'">' . "\n";
$strResultado .= '<caption class="infraCaption">' . PaginaSEI::getInstance()->gerarCaptionTabela($strCaptionTabela, $numRegistros) . '</caption>';
$strResultado .= "<thead>";
$strResultado .= '<th class="infraTh" width="1%">' . PaginaSEI::getInstance()->getThCheck() . '</th>' . "\n";
Expand Down Expand Up @@ -340,22 +340,18 @@
}

.dataTables_paginate .paginate_button.current {
background-color: var(--color-primary-default);
background-color: var(--infra-esquema-cor-clara);
color: #fff;
}


#tblBlocos_filter {
position: absolute;
opacity: 0;
}
#frmBlocoLista th.infraTh {
color: #ECF0F1;
background: #155f9b;
}
}

#frmBlocoLista #tblBlocos_wrapper label:first-of-type{font-size: 12px;}
#frmBlocoLista #tblBlocos_wrapper select:first-of-type{font-size: 11px;}
#frmBlocoLista #tblBlocos{border-collapse: collapse;}
</style>
<?php $objPaginaSEI->montarJavaScript();
$acaoOrigem=$_GET['acao_origem']; ?>
Expand Down

0 comments on commit d50a027

Please sign in to comment.