-
-
Notifications
You must be signed in to change notification settings - Fork 355
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
46 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
20 changes: 7 additions & 13 deletions
20
src/app/shared/components/process-table/process-table.component.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,12 @@ | ||
<div class="table-container" role="table" aria-label="Destinations"> | ||
<div class="flex-table header" role="rowgroup"> | ||
<div class="flex-row first" role="columnheader">Country</div> | ||
<div class="flex-row" role="columnheader">Events</div> | ||
<div class="flex-row" role="columnheader">Time</div> | ||
<div class="flex-row" role="columnheader">Fees</div> | ||
<div class="flex-row" role="columnheader">Fees</div> | ||
<div class="flex-row" role="columnheader">Fees</div> | ||
<div class="flex-row" *ngFor="let header of processTable.headers;let first = first" [ngClass]="first ? 'first' : ''"> | ||
{{header}} | ||
</div> | ||
</div> | ||
<div class="flex-table row" role="rowgroup"> | ||
<div class="flex-row first" role="cell"><span class="flag-icon flag-icon-gb"></span> United Kingdom</div> | ||
<div class="flex-row" role="cell">Stonehenge, Windsor and Bath with Pub Lunch</div> | ||
<div class="flex-row" role="cell">19 Sep, 1p.m.</div> | ||
<div class="flex-row" role="cell">US$500</div> | ||
<div class="flex-row" role="cell">US$500</div> | ||
<div class="flex-row" role="cell">US$500</div> | ||
<div class="flex-table row" role="rowgroup" *ngFor="let column of processTable.cells"> | ||
<div class="flex-row" *ngFor="let cell of column;let first = first" [ngClass]="first ? 'first' : ''"> | ||
{{cell}} | ||
</div> | ||
</div> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters