add color - fix addressbook checks
This commit is contained in:
parent
5a148658de
commit
8c18ef33b5
4 changed files with 59 additions and 17 deletions
|
|
@ -1,4 +1,4 @@
|
|||
<ion-view id="add-address" hide-tabs>
|
||||
<ion-view id="add-address" class="add-address" hide-tabs>
|
||||
<ion-nav-bar class="bar-royal">
|
||||
<ion-nav-title>
|
||||
<span translate>Add Contact</span>
|
||||
|
|
@ -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"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue