bitwarden-estensione-browser/src/popup/settings/folders.component.html

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

40 lines
1007 B
HTML
Raw Normal View History

<header>
<div class="left">
2018-04-13 19:18:43 +02:00
<a routerLink="/tabs/settings">
2019-10-08 23:04:44 +02:00
<span class="header-icon"><i class="fa fa-chevron-left" aria-hidden="true"></i></span>
<span>{{ "back" | i18n }}</span>
2018-04-13 19:18:43 +02:00
</a>
</div>
2021-11-02 23:28:53 +01:00
<h1 class="center">
<span class="title">{{ "folders" | i18n }}</span>
2021-11-02 23:28:53 +01:00
</h1>
<div class="right">
<button
type="button"
appBlurClick
(click)="addFolder()"
appA11yTitle="{{ 'addFolder' | i18n }}"
>
2019-10-08 23:04:44 +02:00
<i class="fa fa-plus fa-lg fa-fw" aria-hidden="true"></i>
</button>
</div>
</header>
<content>
<div class="box list full-list" *ngIf="folders && folders.length">
<div class="box-content">
<button
type="button"
appStopClick
(click)="folderSelected(f)"
class="box-content-row padded"
*ngFor="let f of folders"
2021-12-21 15:43:35 +01:00
>
{{ f.name }}
</button>
</div>
2021-12-21 15:43:35 +01:00
</div>
<div class="no-items" *ngIf="!folders || !folders.length">
<p>{{ "noFolders" | i18n }}</p>
2021-12-21 15:43:35 +01:00
</div>
</content>