Remove button groups.

This commit is contained in:
Alexis Lahouze 2017-08-27 18:41:48 +02:00
parent 9b6ae093a4
commit 6a4523aceb

View File

@ -45,26 +45,24 @@ import { AccountEditModalComponent } from './accountEditModal.component';
<td>{{ account.authorized_overdraft | currency:"EUR":true }}</td> <td>{{ account.authorized_overdraft | currency:"EUR":true }}</td>
<td> <td>
<div class="btn-group btn-group-sm"> <!-- Edit account. -->
<!-- Edit account. --> <button type="button" class="btn-floating green lighten-2"
<button type="button" class="btn-floating green lighten-2" (click)="modify()">
(click)="modify()"> <span class="fa fa-pencil-square-o"></span>
<span class="fa fa-pencil-square-o"></span> </button>
</button>
<!-- Delete account, with confirm. --> <!-- Delete account, with confirm. -->
<button type="button" class="btn-floating red lighten-2" <button type="button" class="btn-floating red lighten-2"
(click)="confirmDelete()"> (click)="confirmDelete()">
<span class="fa fa-trash-o"></span> <span class="fa fa-trash-o"></span>
</button> </button>
<!-- Open account scheduler. --> <!-- Open account scheduler. -->
<button class="btn-floating" <button class="btn-floating"
[hidden]="!account.id" [hidden]="!account.id"
[routerLink]="['/account', account.id, 'scheduler']"> [routerLink]="['/account', account.id, 'scheduler']">
<span class="fa fa-clock-o"></span> <span class="fa fa-clock-o"></span>
</button> </button>
</div>
</td> </td>
` `
}) })