I am using a ‘smart-button’ and faIcons in my app toolbar..
<smart-button class="flat header-button" (onClick)="onAddTaskClick()" [disabled]="taskEditService.noAdd$ | async">
<fa-icon size="2x" [icon]="iconAdd" ></fa-icon>
</smart-button>
By default the
- buttons are displayed as white icons on a blue background
- When disabled the button is covered with a white mask
- When I hover over the button the button area changes to a white background
I am struggling to find out how to change the disabled and hover styles
What I would like is…
- Disabled – icon color changed to display as grey
- Hover – change the button border to show a thin white border
Any suggestions?