1
0
mirror of https://github.com/bitwarden/browser synced 2026-02-09 05:00:10 +00:00

Merge branch 'main' into autofill/pm-19255

This commit is contained in:
Colton Hurst
2025-04-30 16:32:24 -04:00
3 changed files with 9 additions and 3 deletions

View File

@@ -1,4 +1,4 @@
<button bitButton [bitMenuTriggerFor]="itemOptions" buttonType="primary" type="button">
<button bitButton size="small" [bitMenuTriggerFor]="itemOptions" buttonType="primary" type="button">
<i class="bwi bwi-plus-f" aria-hidden="true"></i>
{{ "new" | i18n }}
</button>

View File

@@ -1,7 +1,13 @@
<popup-page>
<popup-header slot="header" [pageTitle]="'folders' | i18n" showBackButton>
<ng-container slot="end">
<button bitButton buttonType="primary" type="button" (click)="openAddEditFolderDialog()">
<button
bitButton
size="small"
buttonType="primary"
type="button"
(click)="openAddEditFolderDialog()"
>
<i class="bwi bwi-plus-f" aria-hidden="true"></i>
{{ "new" | i18n }}
</button>

View File

@@ -1,4 +1,4 @@
<button bitButton [bitMenuTriggerFor]="itemOptions" buttonType="primary" type="button">
<button bitButton size="small" [bitMenuTriggerFor]="itemOptions" buttonType="primary" type="button">
<i *ngIf="!hideIcon" class="bwi bwi-plus-f" aria-hidden="true"></i>
{{ (hideIcon ? "createSend" : "new") | i18n }}
</button>