|
4 | 4 | (mouseenter)="setShowBoolean('showLeftIcons', true)" (mouseleave)="setShowBoolean('showLeftIcons', false)" |
5 | 5 | > |
6 | 6 | <div class="circle-button left" fxLayout="row" fxLayoutAlign="center center" (click)="close()"> |
7 | | - <eqm-icon *ngIf="showLeftIcons" [@FadeInOut] stroke=3 strokeColor="#2E2E2E" color="#2E2E2E" width="8" height="8" name="cross"></eqm-icon> |
| 7 | + <eqm-icon *ngIf="showLeftIcons" [@FadeInOut] [stroke]=3 strokeColor="#2E2E2E" color="#2E2E2E" [width]="8" [height]="8" name="cross"></eqm-icon> |
8 | 8 | </div> |
9 | 9 | <div class="circle-button left" fxLayoutAlign="center center" (click)="hide()"> |
10 | | - <eqm-icon *ngIf="showLeftIcons" [@FadeInOut] color="#2E2E2E" width="8" height="8" name="minus"></eqm-icon> |
| 10 | + <eqm-icon *ngIf="showLeftIcons" [@FadeInOut] color="#2E2E2E" [width]="8" [height]="8" name="minus"></eqm-icon> |
11 | 11 | </div> |
12 | 12 | <div *ngIf="uiMode" |
13 | 13 | class="circle-button left" fxLayoutAlign="center center" |
14 | 14 | (click)="toggleUIMode()" |
15 | 15 | [eqmTooltip]="uiMode === 'window' ? 'Popover mode' : 'Window mode'" eqmTooltipPositionSide="bottom"> |
16 | | - <eqm-icon *ngIf="showLeftIcons" [@FadeInOut] color="#2E2E2E" width="8" height="8" name="triangle" [rotate]="uiMode == 'window' ? -90 : 90"></eqm-icon> |
| 16 | + <eqm-icon *ngIf="showLeftIcons" [@FadeInOut] color="#2E2E2E" [width]="8" [height]="8" name="triangle" [rotate]="uiMode == 'window' ? -90 : 90"></eqm-icon> |
17 | 17 | </div> |
18 | 18 | </div> |
19 | 19 | <eqm-label>eqMac</eqm-label> |
|
23 | 23 | <div class="circle-button right" |
24 | 24 | fxLayout="row" fxLayoutAlign="center center" |
25 | 25 | (click)="toggleHelp($event)" |
26 | | - eqmTooltip="Help" eqmTooltipPositionSide="bottom" eqmTooltipDelay="100"> |
27 | | - <eqm-icon class="settings" [@FadeInOut] stroke="0" color="#2E2E2E" width="10" height="10" name="help"></eqm-icon> |
| 26 | + eqmTooltip="Help" eqmTooltipPositionSide="bottom" [eqmTooltipDelay]="100"> |
| 27 | + <eqm-icon class="settings" [@FadeInOut] [stroke]="0" color="#2E2E2E" [width]="10" [height]="10" name="help"></eqm-icon> |
28 | 28 | </div> |
29 | 29 | <div class="circle-button right" |
30 | 30 | fxLayout="row" fxLayoutAlign="center center" |
31 | 31 | (click)="toggleSettings($event)" |
32 | | - eqmTooltip="Settings" eqmTooltipPositionSide="bottom" eqmTooltipDelay="100"> |
33 | | - <eqm-icon class="settings" [@FadeInOut] stroke="0" color="#2E2E2E" width="14" height="14" name="spanner-circle"></eqm-icon> |
| 32 | + eqmTooltip="Settings" eqmTooltipPositionSide="bottom" [eqmTooltipDelay]="100"> |
| 33 | + <eqm-icon class="settings" [@FadeInOut] [stroke]="0" color="#2E2E2E" [width]="14" [height]="14" name="spanner-circle"></eqm-icon> |
34 | 34 | </div> |
35 | 35 | <div class="circle-button right" fxLayoutAlign="center center" (click)="quit()" eqmTooltip="Quit" eqmTooltipPositionSide="bottom"> |
36 | | - <eqm-icon [@FadeInOut] color="#2E2E2E" width="12" height="12" name="quit"></eqm-icon> |
| 36 | + <eqm-icon [@FadeInOut] color="#2E2E2E" [width]="12" [height]="12" name="quit"></eqm-icon> |
37 | 37 | </div> |
38 | 38 | </div> |
39 | 39 | </div> |
0 commit comments