Skip to content

Commit

Permalink
Style: Removido o símbolo de carregamento dos botões de escolher form…
Browse files Browse the repository at this point in the history
…ulário por status
  • Loading branch information
MarcosViniciusG committed Aug 18, 2024
1 parent 461a955 commit 5ea363e
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 46 deletions.
3 changes: 0 additions & 3 deletions lgbtq_connect/includes/admin/pagina_administracao.php
Original file line number Diff line number Diff line change
Expand Up @@ -110,23 +110,20 @@ function mostrar_dados() {
echo '<h2>Formulários</h2>';
echo '<button value="Pendente" id="botao_inicial" class="btn-pendente" onclick="filtrar(this); destacarBotao(this, \'Pendentes\')">
<div class="lc_loader-container">
<div class="lc_loader"></div>
<div class="lc_counter">' . $pendentes . '</div>
</div>
Pendentes
<i class="bi bi-arrow-right-circle"></i>
</button>';
echo '<button value="Aprovado" class=" btn-aprovado" onclick="filtrar(this); destacarBotao(this, \'Aprovados\')">
<div class="lc_loader-container">
<div class="lc_loader"></div>
<div class="lc_counter">'. $aprovados .'</div>
</div>
Aprovados
<i class="bi bi-arrow-right-circle"></i>
</button>';
echo '<button value="Negado" class="btn-negado" onclick="filtrar(this); destacarBotao(this, \'Negados\')">
<div class="lc_loader-container">
<div class="lc_loader"></div>
<div class="lc_counter">'. $negados . '</div>
</div>
Negados
Expand Down
43 changes: 0 additions & 43 deletions lgbtq_connect/includes/admin/style-admin.css
Original file line number Diff line number Diff line change
Expand Up @@ -466,56 +466,13 @@ table th:last-child {
color: white !important;
}

.lc_rotate {
transform: rotate(90deg);
transition: transform 0.3s ease;
}

.lc_loader-container {
position: relative;
display: inline-block;
width: 50px;
height: 50px;
}

.lc_loader {
position: absolute;
width: 100%;
height: 100%;
border-radius: 50%;
animation: loader1776 2s linear infinite;
box-sizing: border-box;
}

.lc_loader::before, .lc_loader::after {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
border-radius: 50%;
box-sizing: border-box;
}

.lc_loader::before {
border: 5px solid;
border-color: rgb(235, 169, 47) transparent transparent rgb(43, 145, 87);
}

.lc_loader::after {
border: 5px solid;
border-color: transparent rgb(20, 102, 226) rgb(224, 71, 71) transparent;
animation: loader1776 2s linear infinite;
animation-delay: -1s; /* Slight delay for the second half of the border */
}

@keyframes loader1776 {
to {
transform: rotate(360deg);
}
}

.lc_counter {
font-weight: bold;
position: absolute;
Expand Down

0 comments on commit 5ea363e

Please sign in to comment.