1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-09-23 03:22:50 +02:00

fix send list item button hover (#11109)

This commit is contained in:
Jordan Aasen 2024-09-17 12:05:19 -07:00 committed by GitHub
parent 80a9836cb2
commit 1a961ee294
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -33,21 +33,22 @@
<ng-container slot="end"> <ng-container slot="end">
<bit-item-action> <bit-item-action>
<button <button
class="tw-p-1"
bitIconButton="bwi-clone"
size="small"
type="button" type="button"
(click)="copySendLink(send)" (click)="copySendLink(send)"
appA11yTitle="{{ 'copyLink' | i18n }} - {{ send.name }}" appA11yTitle="{{ 'copyLink' | i18n }} - {{ send.name }}"
> ></button>
<i class="bwi tw-text-lg bwi-clone"></i>
</button>
</bit-item-action> </bit-item-action>
<bit-item-action> <bit-item-action>
<button <button
bitIconButton="bwi-trash"
size="small"
type="button" type="button"
(click)="deleteSend(send)" (click)="deleteSend(send)"
appA11yTitle="{{ 'delete' | i18n }} - {{ send.name }}" appA11yTitle="{{ 'delete' | i18n }} - {{ send.name }}"
> ></button>
<i class="bwi tw-text-lg bwi-trash"></i>
</button>
</bit-item-action> </bit-item-action>
</ng-container> </ng-container>
</button> </button>