You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
frontend/src/app/components/option-picker/option-picker.component.html

19 lines
730 B

<ion-list>
<ion-item button (click)="onSelect('search_everywhere')">
<i slot="start" class="fa fa-search"></i>
<ion-label>Search Everywhere</ion-label>
</ion-item>
<!--<ion-item button (click)="onSelect('html_export')">
<i slot="start" class="fa fa-code"></i>
<ion-label>Export to HTML Site</ion-label>
</ion-item>-->
<ion-item button (click)="onSelect('toggle_darkmode')">
<i slot="start" class="fa" [ngClass]="isDark() ? 'fa-sun' : 'fa-moon'"></i>
<ion-label>{{ isDark() ? 'To The Light!' : 'Go Dark...' }}</ion-label>
</ion-item>
<ion-item button (click)="onSelect('logout')">
<i slot="start" class="fa fa-sign-out-alt"></i>
<ion-label>Logout</ion-label>
</ion-item>
</ion-list>