mirror of
https://github.com/bitwarden/browser
synced 2025-12-11 22:03:36 +00:00
[PM-6391] Add "fixed-width" class to view icons (#8019)
* add "fixed-width" class to view icons * remove redundant class name
This commit is contained in:
@@ -62,7 +62,7 @@
|
|||||||
(click)="generateUsername()"
|
(click)="generateUsername()"
|
||||||
*ngIf="!(!cipher.edit && editMode)"
|
*ngIf="!(!cipher.edit && editMode)"
|
||||||
>
|
>
|
||||||
<i class="bwi bwi-lg bwi-generate" aria-hidden="true"></i>
|
<i class="bwi bwi-fw bwi-lg bwi-generate" aria-hidden="true"></i>
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@@ -92,12 +92,12 @@
|
|||||||
*ngIf="cipher.viewPassword"
|
*ngIf="cipher.viewPassword"
|
||||||
>
|
>
|
||||||
<i
|
<i
|
||||||
class="bwi bwi-lg bwi-check-circle"
|
class="bwi bwi-fw bwi-lg bwi-check-circle"
|
||||||
[hidden]="$any(checkPasswordBtn).loading"
|
[hidden]="$any(checkPasswordBtn).loading"
|
||||||
aria-hidden="true"
|
aria-hidden="true"
|
||||||
></i>
|
></i>
|
||||||
<i
|
<i
|
||||||
class="bwi bwi-lg bwi-spinner bwi-spin"
|
class="bwi bwi-fw bwi-lg bwi-spinner bwi-spin"
|
||||||
[hidden]="!$any(checkPasswordBtn).loading"
|
[hidden]="!$any(checkPasswordBtn).loading"
|
||||||
aria-hidden="true"
|
aria-hidden="true"
|
||||||
></i>
|
></i>
|
||||||
@@ -112,7 +112,7 @@
|
|||||||
[attr.aria-pressed]="showPassword"
|
[attr.aria-pressed]="showPassword"
|
||||||
>
|
>
|
||||||
<i
|
<i
|
||||||
class="bwi bwi-lg"
|
class="bwi bwi-fw bwi-lg"
|
||||||
aria-hidden="true"
|
aria-hidden="true"
|
||||||
[ngClass]="{ 'bwi-eye': !showPassword, 'bwi-eye-slash': showPassword }"
|
[ngClass]="{ 'bwi-eye': !showPassword, 'bwi-eye-slash': showPassword }"
|
||||||
></i>
|
></i>
|
||||||
@@ -125,7 +125,7 @@
|
|||||||
(click)="generatePassword()"
|
(click)="generatePassword()"
|
||||||
*ngIf="cipher.viewPassword && !(!cipher.edit && editMode)"
|
*ngIf="cipher.viewPassword && !(!cipher.edit && editMode)"
|
||||||
>
|
>
|
||||||
<i class="bwi bwi-lg bwi-generate" aria-hidden="true"></i>
|
<i class="bwi bwi-fw bwi-lg bwi-generate" aria-hidden="true"></i>
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@@ -171,7 +171,7 @@
|
|||||||
[attr.aria-pressed]="showTotpSeed"
|
[attr.aria-pressed]="showTotpSeed"
|
||||||
>
|
>
|
||||||
<i
|
<i
|
||||||
class="bwi bwi-lg"
|
class="bwi bwi-fw bwi-lg"
|
||||||
aria-hidden="true"
|
aria-hidden="true"
|
||||||
[ngClass]="{ 'bwi-eye': !showTotpSeed, 'bwi-eye-slash': showTotpSeed }"
|
[ngClass]="{ 'bwi-eye': !showTotpSeed, 'bwi-eye-slash': showTotpSeed }"
|
||||||
></i>
|
></i>
|
||||||
@@ -184,7 +184,7 @@
|
|||||||
(click)="copy(cipher.login.totp, 'totp', 'TOTP')"
|
(click)="copy(cipher.login.totp, 'totp', 'TOTP')"
|
||||||
*ngIf="cipher.viewPassword"
|
*ngIf="cipher.viewPassword"
|
||||||
>
|
>
|
||||||
<i class="bwi bwi-lg bwi-clone" aria-hidden="true"></i>
|
<i class="bwi bwi-fw bwi-lg bwi-clone" aria-hidden="true"></i>
|
||||||
</button>
|
</button>
|
||||||
<button
|
<button
|
||||||
type="button"
|
type="button"
|
||||||
@@ -194,7 +194,7 @@
|
|||||||
(click)="captureTOTPFromTab()"
|
(click)="captureTOTPFromTab()"
|
||||||
*ngIf="!(!cipher.edit && editMode)"
|
*ngIf="!(!cipher.edit && editMode)"
|
||||||
>
|
>
|
||||||
<i class="bwi bwi-lg bwi-camera" aria-hidden="true"></i>
|
<i class="bwi bwi-fw bwi-lg bwi-camera" aria-hidden="true"></i>
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@@ -236,7 +236,7 @@
|
|||||||
[attr.aria-pressed]="showCardNumber"
|
[attr.aria-pressed]="showCardNumber"
|
||||||
>
|
>
|
||||||
<i
|
<i
|
||||||
class="bwi bwi-lg"
|
class="bwi bwi-fw bwi-lg"
|
||||||
aria-hidden="true"
|
aria-hidden="true"
|
||||||
[ngClass]="{ 'bwi-eye': !showCardNumber, 'bwi-eye-slash': showCardNumber }"
|
[ngClass]="{ 'bwi-eye': !showCardNumber, 'bwi-eye-slash': showCardNumber }"
|
||||||
></i>
|
></i>
|
||||||
@@ -313,7 +313,7 @@
|
|||||||
[attr.aria-pressed]="showCardCode"
|
[attr.aria-pressed]="showCardCode"
|
||||||
>
|
>
|
||||||
<i
|
<i
|
||||||
class="bwi bwi-lg"
|
class="bwi bwi-fw bwi-lg"
|
||||||
aria-hidden="true"
|
aria-hidden="true"
|
||||||
[ngClass]="{ 'bwi-eye': !showCardCode, 'bwi-eye-slash': showCardCode }"
|
[ngClass]="{ 'bwi-eye': !showCardCode, 'bwi-eye-slash': showCardCode }"
|
||||||
></i>
|
></i>
|
||||||
@@ -536,7 +536,7 @@
|
|||||||
(click)="removeUri(u)"
|
(click)="removeUri(u)"
|
||||||
appA11yTitle="{{ 'remove' | i18n }}"
|
appA11yTitle="{{ 'remove' | i18n }}"
|
||||||
>
|
>
|
||||||
<i class="bwi bwi-minus-circle bwi-lg" aria-hidden="true"></i>
|
<i class="bwi bwi-fw bwi-minus-circle bwi-lg" aria-hidden="true"></i>
|
||||||
</button>
|
</button>
|
||||||
<div class="row-main">
|
<div class="row-main">
|
||||||
<label for="loginUri{{ i }}">{{ "uriPosition" | i18n: i + 1 }}</label>
|
<label for="loginUri{{ i }}">{{ "uriPosition" | i18n: i + 1 }}</label>
|
||||||
@@ -588,7 +588,7 @@
|
|||||||
(click)="toggleUriInput(u)"
|
(click)="toggleUriInput(u)"
|
||||||
[attr.aria-pressed]="$any(u).showCurrentUris === true"
|
[attr.aria-pressed]="$any(u).showCurrentUris === true"
|
||||||
>
|
>
|
||||||
<i aria-hidden="true" class="bwi bwi-lg bwi-list"></i>
|
<i aria-hidden="true" class="bwi bwi-fw bwi-lg bwi-list"></i>
|
||||||
</button>
|
</button>
|
||||||
<button
|
<button
|
||||||
type="button"
|
type="button"
|
||||||
@@ -598,7 +598,7 @@
|
|||||||
(click)="toggleUriOptions(u)"
|
(click)="toggleUriOptions(u)"
|
||||||
[attr.aria-pressed]="$any(u).showOptions === true"
|
[attr.aria-pressed]="$any(u).showOptions === true"
|
||||||
>
|
>
|
||||||
<i class="bwi bwi-lg bwi-cog" aria-hidden="true"></i>
|
<i class="bwi bwi-fw bwi-lg bwi-cog" aria-hidden="true"></i>
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
Reference in New Issue
Block a user