mirror of
https://github.com/bitwarden/browser
synced 2025-12-13 14:53:33 +00:00
[bug] Fix tab order regression (#1340)
This commit is contained in:
2
jslib
2
jslib
Submodule jslib updated: 609baece05...240fc154ab
@@ -1,17 +1,4 @@
|
|||||||
<div id="vault" class="vault" attr.aria-hidden="{{ showingModal }}">
|
<div id="vault" class="vault" attr.aria-hidden="{{ showingModal }}">
|
||||||
<app-vault-groupings
|
|
||||||
id="groupings"
|
|
||||||
class="groupings"
|
|
||||||
(onAllClicked)="clearGroupingFilters()"
|
|
||||||
(onFavoritesClicked)="filterFavorites()"
|
|
||||||
(onCipherTypeClicked)="filterCipherType($event)"
|
|
||||||
(onFolderClicked)="filterFolder($event.id)"
|
|
||||||
(onAddFolder)="addFolder()"
|
|
||||||
(onEditFolder)="editFolder($event.id)"
|
|
||||||
(onCollectionClicked)="filterCollection($event.id)"
|
|
||||||
(onTrashClicked)="filterDeleted()"
|
|
||||||
>
|
|
||||||
</app-vault-groupings>
|
|
||||||
<app-vault-ciphers
|
<app-vault-ciphers
|
||||||
id="items"
|
id="items"
|
||||||
class="items"
|
class="items"
|
||||||
@@ -64,6 +51,19 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
<app-vault-groupings
|
||||||
|
id="groupings"
|
||||||
|
class="groupings"
|
||||||
|
(onAllClicked)="clearGroupingFilters()"
|
||||||
|
(onFavoritesClicked)="filterFavorites()"
|
||||||
|
(onCipherTypeClicked)="filterCipherType($event)"
|
||||||
|
(onFolderClicked)="filterFolder($event.id)"
|
||||||
|
(onAddFolder)="addFolder()"
|
||||||
|
(onEditFolder)="editFolder($event.id)"
|
||||||
|
(onCollectionClicked)="filterCollection($event.id)"
|
||||||
|
(onTrashClicked)="filterDeleted()"
|
||||||
|
>
|
||||||
|
</app-vault-groupings>
|
||||||
</div>
|
</div>
|
||||||
<ng-template #passwordGenerator></ng-template>
|
<ng-template #passwordGenerator></ng-template>
|
||||||
<ng-template #attachments></ng-template>
|
<ng-template #attachments></ng-template>
|
||||||
|
|||||||
@@ -27,7 +27,20 @@ app-root {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
> .items {
|
||||||
|
order: 2;
|
||||||
|
}
|
||||||
|
|
||||||
|
> .details {
|
||||||
|
order: 3;
|
||||||
|
}
|
||||||
|
|
||||||
|
> .logo {
|
||||||
|
order: 4;
|
||||||
|
}
|
||||||
|
|
||||||
> .groupings {
|
> .groupings {
|
||||||
|
order: 1;
|
||||||
width: 22%;
|
width: 22%;
|
||||||
min-width: 175px;
|
min-width: 175px;
|
||||||
max-width: 250px;
|
max-width: 250px;
|
||||||
|
|||||||
Reference in New Issue
Block a user