Fixed layout.

This commit is contained in:
Alexey Zinchenko 2019-05-10 15:30:24 +03:00
parent 35fdd08fc8
commit fe6e34f9de
3 changed files with 3 additions and 3 deletions

View File

@ -47,7 +47,7 @@
<td th:text="${client.lastName}"></td>
<td th:text="${client.phoneNo}"></td>
<td>
<div class="btn-group pull-right">
<div class="btn-group float-right">
<a th:href="@{/client/edit/{id}(id=${client.id})}" class="btn btn-secondary" th:text="#{common.edit.button}"></a>
<button type="button" class="btn btn-danger" th:onclick="'deleteClientById(' + ${client.id} + ')'" th:text="#{common.delete.button}"></button>
</div>

View File

@ -47,7 +47,7 @@
<td th:text="${mechanic.lastName}"></td>
<td th:text="${mechanic.hourlyPayment}"></td>
<td>
<div class="btn-group pull-right">
<div class="btn-group float-right">
<a th:href="@{/mechanic/statistics/{id}(id=${mechanic.id})}" class="btn btn-info" th:text="#{showStatistics.button}"></a>
<a th:href="@{/mechanic/edit/{id}(id=${mechanic.id})}" class="btn btn-secondary" th:text="#{common.edit.button}"></a>
<button type="button" class="btn btn-danger" th:onclick="'deleteMechanicById(' + ${mechanic.id} + ')'" th:text="#{common.delete.button}"></button>

View File

@ -82,7 +82,7 @@
<td th:text="${{order.orderStatus}}"></td>
<td th:text="${{order.totalPrice}}"></td>
<td style="break-inside: avoid">
<div class="btn-group pull-right">
<div class="btn-group float-right">
<a th:href="@{/order/edit/{id}(id=${order.id})}" class="btn btn-secondary" th:text="#{common.edit.button}"></a>
<button type="button" class="btn btn-danger" th:onclick="'deleteOrderById(' + ${order.id} + ')'" th:text="#{common.delete.button}"></button>
</div>