mirror of
https://github.com/bitwarden/browser
synced 2025-12-16 08:13:42 +00:00
update layouts for user groups and collections
This commit is contained in:
@@ -19,12 +19,6 @@
|
|||||||
{{'noGroupsInList' | i18n}}
|
{{'noGroupsInList' | i18n}}
|
||||||
</div>
|
</div>
|
||||||
<table class="table table-hover table-list mb-0" *ngIf="groups && groups.length">
|
<table class="table table-hover table-list mb-0" *ngIf="groups && groups.length">
|
||||||
<thead>
|
|
||||||
<tr>
|
|
||||||
<th> </th>
|
|
||||||
<th>{{'name' | i18n}}</th>
|
|
||||||
</tr>
|
|
||||||
</thead>
|
|
||||||
<tbody>
|
<tbody>
|
||||||
<tr *ngFor="let g of groups; let i = index">
|
<tr *ngFor="let g of groups; let i = index">
|
||||||
<td class="table-list-checkbox" (click)="check(g)">
|
<td class="table-list-checkbox" (click)="check(g)">
|
||||||
|
|||||||
@@ -14,16 +14,19 @@
|
|||||||
<p>{{'collectionsDesc' | i18n}}</p>
|
<p>{{'collectionsDesc' | i18n}}</p>
|
||||||
<div class="d-flex">
|
<div class="d-flex">
|
||||||
<h3>{{'collections' | i18n}}</h3>
|
<h3>{{'collections' | i18n}}</h3>
|
||||||
<small class="ml-auto d-flex">
|
<div class="ml-auto d-flex" *ngIf="collections && collections.length">
|
||||||
<button type="button" appBlurClick (click)="selectAll(true)" class="btn btn-link btn-sm py-0">
|
<button type="button" appBlurClick (click)="selectAll(true)" class="btn btn-link btn-sm py-0">
|
||||||
{{'selectAll' | i18n}}
|
{{'selectAll' | i18n}}
|
||||||
</button>
|
</button>
|
||||||
<button type="button" appBlurClick (click)="selectAll(false)" class="btn btn-link btn-sm py-0">
|
<button type="button" appBlurClick (click)="selectAll(false)" class="btn btn-link btn-sm py-0">
|
||||||
{{'unselectAll' | i18n}}
|
{{'unselectAll' | i18n}}
|
||||||
</button>
|
</button>
|
||||||
</small>
|
|
||||||
</div>
|
</div>
|
||||||
<table class="table table-hover table-list mb-0" *ngIf="collections">
|
</div>
|
||||||
|
<div *ngIf="!collections || !collections.length">
|
||||||
|
{{'noCollectionsInList' | i18n}}
|
||||||
|
</div>
|
||||||
|
<table class="table table-hover table-list mb-0" *ngIf="collections && collections.length">
|
||||||
<tbody>
|
<tbody>
|
||||||
<tr *ngFor="let c of collections; let i = index" (click)="check(c)">
|
<tr *ngFor="let c of collections; let i = index" (click)="check(c)">
|
||||||
<td class="table-list-checkbox">
|
<td class="table-list-checkbox">
|
||||||
|
|||||||
Reference in New Issue
Block a user