Skip to content

Commit

Permalink
refactoring button styles
Browse files Browse the repository at this point in the history
  • Loading branch information
Sophia-15 committed Jun 6, 2024
1 parent 7101d40 commit 7862c2c
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 6 deletions.
4 changes: 1 addition & 3 deletions app_client/static/css/app_client/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -182,14 +182,12 @@ tbody td:first-child div {
}

.view button, .delete button {
padding: 8px 16px;
padding: 4px 8px;
border: none;
background-color: var(--blue-500);
color: var(--white);
font-weight: 600;
border-radius: 4px;
float: right;
margin-top: 32px;
transition: all .3s;
}

Expand Down
2 changes: 0 additions & 2 deletions app_client/templates/RequestOrder/orders.html
Original file line number Diff line number Diff line change
Expand Up @@ -96,8 +96,6 @@ <h3>Suas solicitações</h3>
<i data-lucide="star" width="28" height="28" color="#d4c02a"></i>
</a>
</td>


{% endif %}

{% if order.closedAt or order.status == 'CANELADO'%}
Expand Down
2 changes: 1 addition & 1 deletion app_company/static/app_company/js/filter-order.js
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ function handleLoadFilteredHtml(order) {
${order.fields.isOs ? "Ordem de Serviço" : "Solicitação"}
</td>
<td>
<a href="${order.fields.isOs ? `/empresa/os/${order.pk}` : `/empresa/os/${order.pk}`}">
<a href="${order.fields.isOs ? `/empresa/os/${order.pk}` : `/empresa/solicitacao/${order.pk}`}">
<svg xmlns="http://www.w3.org/2000/svg" width="28" height="28" viewBox="0 0 28 28" fill="none" stroke="#155ec8" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-eye"><path d="M2 12s3-7 10-7 10 7 10 7-3 7-10 7-10-7-10-7Z"/><circle cx="12" cy="12" r="3"/></svg>
</a>
</td>
Expand Down

0 comments on commit 7862c2c

Please sign in to comment.