Merge pull request #5294 from JDonadio/fix/validation-icon
fix icon position
This commit is contained in:
commit
d641e960bc
5 changed files with 59 additions and 17 deletions
|
|
@ -16,8 +16,8 @@
|
|||
|
||||
<form name="addressbookForm" no-validate>
|
||||
|
||||
<div class="list">
|
||||
<label class="item item-input item-stacked-label">
|
||||
<div class="list add-address-list add-address-input-group">
|
||||
<label class="item item-input item-stacked-label no-border">
|
||||
<span class="input-label" translate>Name</span>
|
||||
<input type="text"
|
||||
id="name"
|
||||
|
|
@ -37,10 +37,8 @@
|
|||
<label class="item item-input item-stacked-label">
|
||||
<span class="input-label" translate>Bitcoin Address</span>
|
||||
<div class="input-notification">
|
||||
<i class="icon ion-checkmark-circled balanced"
|
||||
ng-show="!addressbookForm.address.$invalid"></i>
|
||||
<i class="icon ion-close-circled assertive"
|
||||
ng-show="addressbookForm.address.$invalid && addressbookEntry.address"></i>
|
||||
<i ng-show="!addressbookForm.address.$invalid" class="icon ion-checkmark-circled valid"></i>
|
||||
<i ng-show="addressbookForm.address.$invalid && addressbookEntry.address" class="icon ion-close-circled invalid"></i>
|
||||
</div>
|
||||
<input type="text"
|
||||
id="address"
|
||||
|
|
|
|||
|
|
@ -25,10 +25,8 @@
|
|||
<label class="item item-input item-stacked-label no-border">
|
||||
<span class="input-label" translate>Wallet Invitation</span>
|
||||
<div class="input-notification">
|
||||
<i class="icon ion-checkmark-circled balanced"
|
||||
ng-show="!joinForm.secret.$invalid"></i>
|
||||
<i class="icon ion-close-circled assertive"
|
||||
ng-show="joinForm.secret.$invalid && secret"></i>
|
||||
<i ng-show="!joinForm.secret.$invalid" class="icon ion-checkmark-circled valid"></i>
|
||||
<i ng-show="joinForm.secret.$invalid && secret" class="icon ion-close-circled invalid"></i>
|
||||
</div>
|
||||
<input id="secret"
|
||||
type="text"
|
||||
|
|
@ -91,14 +89,14 @@
|
|||
</div>
|
||||
|
||||
<div class="item item-input" ng-show="encrypt">
|
||||
<input ng-show="join.seedSourceId == 'new'"
|
||||
<input ng-show="join.seedSourceId == 'new'"
|
||||
placeholder="{{'Password'|translate}}"
|
||||
type="password"
|
||||
autocapitalize="off"
|
||||
name="createPassphrase"
|
||||
ng-model="createPassphrase">
|
||||
|
||||
<input ng-show="join.seedSourceId == 'set'"
|
||||
<input ng-show="join.seedSourceId == 'set'"
|
||||
placeholder="{{'Password'|translate}}"
|
||||
type="password"
|
||||
autocapitalize="off"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue