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.
RTL/src/app/shared/components/navigation/top-menu/top-menu.component.html

19 lines
797 B
HTML

<mat-menu #topMenu="matMenu" [overlapTrigger]="false" class="top-menu">
<p mat-menu-item>
<fa-icon [icon]="faCodeBranch" class="fa-icon-small mr-1"></fa-icon>
<span>Version: {{version}}</span>
</p>
<a mat-menu-item routerLink="/help">
<fa-icon [icon]="faLifeRing" class="fa-icon-small mr-1"></fa-icon>
<span routerLink="/help">Help</span>
</a>
<a *ngIf="showLogout" mat-menu-item (click)="onClick()">
<fa-icon [icon]="faEject" class="fa-icon-small mr-1"></fa-icon>
<span>Logout</span>
</a>
</mat-menu>
<button mat-icon-button [matMenuTriggerFor]="topMenu" class="top-toolbar-icon mr-2">
<img src="assets/images/RTL-Horse-BY.svg" alt="RTL Logo" style="width:3.2rem;">
<mat-icon style="font-size: 2rem; text-align:start;">arrow_drop_down</mat-icon>
</button>