You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
568 B
HTML
19 lines
568 B
HTML
|
7 years ago
|
<!--
|
||
|
|
<div [ngStyle]="style" class="custom-button ">
|
||
|
|
<img [src]="icon" [ngClass]="direction == 'rtl'? 'icon-right' : 'icon-left' " >
|
||
|
|
<p [ngClass]="direction == 'rtl'? 'title-right' : 'title-left' ">{{title}}</p>
|
||
|
|
<img src="assets/icon/arrow.png" [ngClass]="direction == 'rtl' ? 'arrow-right' : 'arrow-left' ">
|
||
|
|
</div>
|
||
|
|
|
||
|
|
-->
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
<div (click)="onClicked()" [ngStyle]="style" class="custom-button">
|
||
|
|
<img [src]="icon" class="icon" >
|
||
|
|
<p class="title">{{title}}</p>
|
||
|
|
</div>
|
||
|
|
|
||
|
|
<!-- disabled overlay-->
|
||
|
|
<div class="overlay" modal *ngIf="disabled">
|
||
|
|
</div>
|