Merge branch 'ref/design' of https://github.com/bitpay/bitpay-wallet into feature/recieve_view_polish

This commit is contained in:
Jamal Jackson 2016-10-13 08:13:32 -04:00
commit 6836139ead
19 changed files with 134 additions and 120 deletions

View file

@ -1,8 +1,10 @@
<div ng-repeat="copayer in copayers">
<span class="item size-12" ng-show="copayer.id == wallet.copayerId">
<i class="icon ion-checkmark"></i> {{'Me'|translate}}
<div class="item item-icon-left" ng-repeat="copayer in copayers">
<span ng-show="copayer.id == wallet.copayerId">
<i class="icon ion-checkmark"></i>
{{'Me'|translate}}
</span>
<span class="item size-12 text-gray" ng-show="copayer.id != wallet.copayerId">
<i class="icon ion-checkmark"></i> {{copayer.name}}
<span ng-show="copayer.id != wallet.copayerId">
<i class="icon ion-checkmark"></i>
{{copayer.name}}
</span>
</div>