Remove button groups.

This commit is contained in:
Alexis Lahouze 2017-08-27 18:41:48 +02:00
parent 9b6ae093a4
commit 6a4523aceb
1 changed files with 16 additions and 18 deletions

View File

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