mirror of
https://github.com/bitwarden/browser.git
synced 2024-12-02 13:23:29 +01:00
05f6a30672
* Remove `appBlurClick` from browser extension controls * Remove last remaining `appBlurClick` from desktop app controls * Change any straggler `<a>` links to buttons where appropriate (where they don't open a browser window) * Add missing `type="button"` to some of the desktop buttons * Update and run prettier, linter * Remove orphaned jslibs
58 lines
1.9 KiB
HTML
58 lines
1.9 KiB
HTML
<div class="tab-page">
|
|
<router-outlet></router-outlet>
|
|
<nav class="tabs">
|
|
<ul>
|
|
<li routerLinkActive="active" #rlaCurrentTab="routerLinkActive" *ngIf="showCurrentTab">
|
|
<button
|
|
type="button"
|
|
routerLink="current"
|
|
appA11yTitle="{{ 'currentTab' | i18n }}"
|
|
[attr.aria-pressed]="rlaCurrentTab.isActive"
|
|
>
|
|
<i class="bwi bwi-folder-closed-f bwi-2x" aria-hidden="true"></i>{{ "tab" | i18n }}
|
|
</button>
|
|
</li>
|
|
<li routerLinkActive="active" #rlaMyVault="routerLinkActive">
|
|
<button
|
|
type="button"
|
|
routerLink="vault"
|
|
appA11yTitle="{{ 'myVault' | i18n }}"
|
|
[attr.aria-pressed]="rlaMyVault.isActive"
|
|
>
|
|
<i class="bwi bwi-lock-f bwi-2x" aria-hidden="true"></i>{{ "vault" | i18n }}
|
|
</button>
|
|
</li>
|
|
<li routerLinkActive="active" #rlaSend="routerLinkActive">
|
|
<button
|
|
type="button"
|
|
routerLink="send"
|
|
appA11yTitle="{{ 'send' | i18n }}"
|
|
[attr.aria-pressed]="rlaSend.isActive"
|
|
>
|
|
<i class="bwi bwi-send-f bwi-2x" aria-hidden="true"></i>{{ "send" | i18n }}
|
|
</button>
|
|
</li>
|
|
<li routerLinkActive="active" #rlaGenerator="routerLinkActive">
|
|
<button
|
|
type="button"
|
|
routerLink="generator"
|
|
appA11yTitle="{{ 'passGen' | i18n }}"
|
|
[attr.aria-pressed]="rlaGenerator.isActive"
|
|
>
|
|
<i class="bwi bwi-generate-f bwi-2x" aria-hidden="true"></i>{{ "generator" | i18n }}
|
|
</button>
|
|
</li>
|
|
<li routerLinkActive="active" #rlaSettings="routerLinkActive">
|
|
<button
|
|
type="button"
|
|
routerLink="settings"
|
|
appA11yTitle="{{ 'settings' | i18n }}"
|
|
[attr.aria-pressed]="rlaSettings.isActive"
|
|
>
|
|
<i class="bwi bwi-cog-f bwi-2x" aria-hidden="true"></i>{{ "settings" | i18n }}
|
|
</button>
|
|
</li>
|
|
</ul>
|
|
</nav>
|
|
</div>
|