1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-20 10:13:31 +00:00

Consistent: Replaced the clipboard icon with a clone icon to improve UX (#1344)

* Replace clone item button fa-clone to fa-files-o

* Replace copy value button fa-clipboard to fa-clone
This commit is contained in:
K. Sasa
2020-07-28 02:22:56 +09:00
committed by GitHub
parent 25f2697dd2
commit 4a35930e2d
4 changed files with 11 additions and 11 deletions

View File

@@ -31,6 +31,6 @@
<ng-container *ngIf="cipher.type === cipherType.SecureNote">
<span class="row-btn" appStopClick appStopProp appA11yTitle="{{'copyNote' | i18n}}"
(click)="copy(cipher, cipher.notes, 'note', 'Note')" [ngClass]="{disabled: !cipher.notes}">
<i class="fa fa-lg fa-clipboard" aria-hidden="true"></i>
<i class="fa fa-lg fa-clone" aria-hidden="true"></i>
</span>
</ng-container>