Fix button styles.
This commit is contained in:
parent
7a0b7837da
commit
34ade59d4c
@ -43,23 +43,23 @@ import { AccountEditModalComponent } from './accountEditModal.component';
|
|||||||
<td>
|
<td>
|
||||||
<div class="btn-group btn-group-sm">
|
<div class="btn-group btn-group-sm">
|
||||||
<!-- Edit account. -->
|
<!-- Edit account. -->
|
||||||
<button type="button" class="btn btn-success"
|
<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 btn-secondary"
|
<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. -->
|
||||||
<a class="btn btn-secondary"
|
<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>
|
||||||
</a>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
</td>
|
</td>
|
||||||
`
|
`
|
||||||
|
Loading…
Reference in New Issue
Block a user