Skip to content

Commit

Permalink
[PM-6391] Add "fixed-width" class to view icons (#8019)
Browse files Browse the repository at this point in the history
* add "fixed-width" class to view icons

* remove redundant class name
  • Loading branch information
jprusik authored Feb 26, 2024
1 parent 632598d commit c37fa97
Showing 1 changed file with 13 additions and 13 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ <h2 class="box-header">
(click)="generateUsername()"
*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>
</div>
</div>
Expand Down Expand Up @@ -92,12 +92,12 @@ <h2 class="box-header">
*ngIf="cipher.viewPassword"
>
<i
class="bwi bwi-lg bwi-check-circle"
class="bwi bwi-fw bwi-lg bwi-check-circle"
[hidden]="$any(checkPasswordBtn).loading"
aria-hidden="true"
></i>
<i
class="bwi bwi-lg bwi-spinner bwi-spin"
class="bwi bwi-fw bwi-lg bwi-spinner bwi-spin"
[hidden]="!$any(checkPasswordBtn).loading"
aria-hidden="true"
></i>
Expand All @@ -112,7 +112,7 @@ <h2 class="box-header">
[attr.aria-pressed]="showPassword"
>
<i
class="bwi bwi-lg"
class="bwi bwi-fw bwi-lg"
aria-hidden="true"
[ngClass]="{ 'bwi-eye': !showPassword, 'bwi-eye-slash': showPassword }"
></i>
Expand All @@ -125,7 +125,7 @@ <h2 class="box-header">
(click)="generatePassword()"
*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>
</div>
</div>
Expand Down Expand Up @@ -171,7 +171,7 @@ <h2 class="box-header">
[attr.aria-pressed]="showTotpSeed"
>
<i
class="bwi bwi-lg"
class="bwi bwi-fw bwi-lg"
aria-hidden="true"
[ngClass]="{ 'bwi-eye': !showTotpSeed, 'bwi-eye-slash': showTotpSeed }"
></i>
Expand All @@ -184,7 +184,7 @@ <h2 class="box-header">
(click)="copy(cipher.login.totp, 'totp', 'TOTP')"
*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
type="button"
Expand All @@ -194,7 +194,7 @@ <h2 class="box-header">
(click)="captureTOTPFromTab()"
*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>
</div>
</div>
Expand Down Expand Up @@ -236,7 +236,7 @@ <h2 class="box-header">
[attr.aria-pressed]="showCardNumber"
>
<i
class="bwi bwi-lg"
class="bwi bwi-fw bwi-lg"
aria-hidden="true"
[ngClass]="{ 'bwi-eye': !showCardNumber, 'bwi-eye-slash': showCardNumber }"
></i>
Expand Down Expand Up @@ -313,7 +313,7 @@ <h2 class="box-header">
[attr.aria-pressed]="showCardCode"
>
<i
class="bwi bwi-lg"
class="bwi bwi-fw bwi-lg"
aria-hidden="true"
[ngClass]="{ 'bwi-eye': !showCardCode, 'bwi-eye-slash': showCardCode }"
></i>
Expand Down Expand Up @@ -536,7 +536,7 @@ <h2 class="box-header">
(click)="removeUri(u)"
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>
<div class="row-main">
<label for="loginUri{{ i }}">{{ "uriPosition" | i18n: i + 1 }}</label>
Expand Down Expand Up @@ -588,7 +588,7 @@ <h2 class="box-header">
(click)="toggleUriInput(u)"
[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
type="button"
Expand All @@ -598,7 +598,7 @@ <h2 class="box-header">
(click)="toggleUriOptions(u)"
[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>
</div>
</div>
Expand Down

0 comments on commit c37fa97

Please sign in to comment.