Style pour la popin de saut

This commit is contained in:
Sébastien André
2020-12-26 19:18:49 +01:00
parent 45a2df911d
commit 932fba5991
3 changed files with 41 additions and 4 deletions

View File

@@ -4,10 +4,12 @@
<ng-container matColumnDef="infos">
<th mat-header-cell *matHeaderCellDef></th>
<td mat-cell *matCellDef="let element" style="text-align: left; cursor: pointer;">
<mat-icon aria-hidden="false" aria-label="All informations of the jump">info</mat-icon>
<span style="display: block;">Gear : {{element.gear.mainCanopy}} ({{element.gear.mainCanopy}})</span>
<span style="display: block;">Cutaway : {{element.withCutaway}}</span>
<span style="display: block;">Notes : {{element.notes}}</span>
<mat-icon aria-hidden="false" aria-label="All informations of the jump"
(click)="showPopin($event, element)" style="display: block;">info</mat-icon>
<span [ngClass]="calculateClasses(element)">
Gear : {{element.gear.mainCanopy}} ({{element.gear.mainCanopy}})
<br>Cutaway : {{element.withCutaway}}
<br>Notes : {{element.notes}}</span>
</td>
</ng-container>