mirror of
https://github.com/bitwarden/browser
synced 2025-12-06 00:13:28 +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>
|
||||
{{ "new" | i18n }}
|
||||
</button>
|
||||
|
||||
@@ -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>
|
||||
|
||||
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user