Makes only the icon clickable to remove a card.
This commit is contained in:
parent
b665922e7a
commit
b146f27d1f
2 changed files with 9 additions and 2 deletions
|
|
@ -11,5 +11,12 @@
|
||||||
color: $light-gray;
|
color: $light-gray;
|
||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
}
|
}
|
||||||
|
&.item-icon-right {
|
||||||
|
.icon-hotspot {
|
||||||
|
right: 0px;
|
||||||
|
padding-left: 11px;
|
||||||
|
padding-right: 11px;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -10,14 +10,14 @@
|
||||||
<div class="item item-divider" translate>
|
<div class="item item-divider" translate>
|
||||||
Cards
|
Cards
|
||||||
</div>
|
</div>
|
||||||
<div class="item item-icon-right" ng-click="remove(card)" ng-repeat="card in bitpayCards">
|
<div class="item item-icon-right" ng-repeat="card in bitpayCards">
|
||||||
<span class="item-title">
|
<span class="item-title">
|
||||||
xxxx-xxxx-xxxx-{{card.lastFourDigits}}
|
xxxx-xxxx-xxxx-{{card.lastFourDigits}}
|
||||||
</span>
|
</span>
|
||||||
<span class="item-subtitle">
|
<span class="item-subtitle">
|
||||||
{{card.email}}
|
{{card.email}}
|
||||||
</span>
|
</span>
|
||||||
<i class="icon ion-trash-b assertive"></i>
|
<i class="icon ion-trash-b icon-hotspot assertive" ng-click="remove(card)"></i>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</ion-content>
|
</ion-content>
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue