mirror of
https://github.com/bitwarden/desktop.git
synced 2024-11-24 11:55:50 +01:00
[bug] Fix tab order regression (#1340)
This commit is contained in:
parent
659c9ea78d
commit
2e09265d3a
2
jslib
2
jslib
@ -1 +1 @@
|
|||||||
Subproject commit 609baece05a046f6679989e55f6e029dd57fb9ee
|
Subproject commit 240fc154ab00a57829d0ce1398a6a6ce93395070
|
@ -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;
|
||||||
|
Loading…
Reference in New Issue
Block a user