mirror of
https://github.com/bitwarden/browser
synced 2025-12-11 22:03:36 +00:00
Use small buttons in extension header (#14433)
* use small button in extension vault header * use small button in extension folder settings * use small button in send header
This commit is contained in:
@@ -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>
|
<i class="bwi bwi-plus-f" aria-hidden="true"></i>
|
||||||
{{ "new" | i18n }}
|
{{ "new" | i18n }}
|
||||||
</button>
|
</button>
|
||||||
|
|||||||
@@ -1,7 +1,13 @@
|
|||||||
<popup-page>
|
<popup-page>
|
||||||
<popup-header slot="header" [pageTitle]="'folders' | i18n" showBackButton>
|
<popup-header slot="header" [pageTitle]="'folders' | i18n" showBackButton>
|
||||||
<ng-container slot="end">
|
<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>
|
<i class="bwi bwi-plus-f" aria-hidden="true"></i>
|
||||||
{{ "new" | i18n }}
|
{{ "new" | i18n }}
|
||||||
</button>
|
</button>
|
||||||
|
|||||||
@@ -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>
|
<i *ngIf="!hideIcon" class="bwi bwi-plus-f" aria-hidden="true"></i>
|
||||||
{{ (hideIcon ? "createSend" : "new") | i18n }}
|
{{ (hideIcon ? "createSend" : "new") | i18n }}
|
||||||
</button>
|
</button>
|
||||||
|
|||||||
Reference in New Issue
Block a user