Fix button styles.

This commit is contained in:
Alexis Lahouze 2017-08-27 18:25:12 +02:00
parent 7a0b7837da
commit 34ade59d4c
1 changed files with 4 additions and 4 deletions

View File

@ -43,23 +43,23 @@ import { AccountEditModalComponent } from './accountEditModal.component';
<td>
<div class="btn-group btn-group-sm">
<!-- Edit account. -->
<button type="button" class="btn btn-success"
<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 btn-secondary"
<button type="button" class="btn-floating red lighten-2"
(click)="confirmDelete()">
<span class="fa fa-trash-o"></span>
</button>
<!-- Open account scheduler. -->
<a class="btn btn-secondary"
<button class="btn-floating"
[hidden]="!account.id"
[routerLink]="['/account', account.id, 'scheduler']">
<span class="fa fa-clock-o"></span>
</a>
</button>
</div>
</td>
`