Fix eye button for password input

pull/3958/head
Chocobozzz 2021-04-26 14:37:24 +02:00
parent f816da921f
commit ab5b66891b
No known key found for this signature in database
GPG Key ID: 583A612D890159BE
2 changed files with 5 additions and 1 deletions

View File

@ -6,7 +6,7 @@
/>
<div *ngIf="withToggle || withCopy" class="input-group-append">
<button *ngIf="withToggle" (click)="toggle()" type="button" class="btn btn-outline-secondary" [title]="toggleTitle">
<button *ngIf="withToggle" (click)="toggle()" type="button" class="btn btn-outline-secondary eye-button" [title]="toggleTitle">
<span class="glyphicon glyphicon-eye-{{ show ? 'open' : 'close' }}"></span>
</button>

View File

@ -9,3 +9,7 @@ input {
padding-left: 15px !important;
padding-right: 15px !important;
}
.eye-button {
line-height: 1 !important;
}