fix
This commit is contained in:
parent
d021d51837
commit
75e951dcc1
@ -32,7 +32,7 @@
|
|||||||
</ion-list>
|
</ion-list>
|
||||||
|
|
||||||
<ion-list [hidden]="tx.isCoinBase">
|
<ion-list [hidden]="tx.isCoinBase">
|
||||||
<ion-item *ngFor="let vin of aggregateItems(tx.vin); let i = index" [ngClass]="[i === txIndex && txDirection === '<' ? 'item--state-highlight' : 'item--state-nolight']">
|
<ion-item *ngFor="let vin of aggregateItems(tx.vin); let i = index" [ngClass]="{'item--state-highlight' : i === txIndex && txDirection === '<'}">
|
||||||
<div>
|
<div>
|
||||||
<div class="ellipsis">
|
<div class="ellipsis">
|
||||||
<p>
|
<p>
|
||||||
@ -73,7 +73,7 @@
|
|||||||
|
|
||||||
<ion-col col-12 col-md-6>
|
<ion-col col-12 col-md-6>
|
||||||
<ion-list>
|
<ion-list>
|
||||||
<ion-item *ngFor="let vout of tx.vout; let i = index" [ngClass]="[i === txIndex && txDirection === '>' ? 'item--state-highlight' : 'item--state-nolight']">
|
<ion-item *ngFor="let vout of tx.vout; let i = index" [ngClass]="{'item--state-highlight' : i === txIndex && txDirection === '>'}">
|
||||||
<div>
|
<div>
|
||||||
<div class="ellipsis">
|
<div class="ellipsis">
|
||||||
<p>
|
<p>
|
||||||
|
|||||||
@ -44,9 +44,6 @@ transaction {
|
|||||||
.item--state-highlight {
|
.item--state-highlight {
|
||||||
background-color: #8dc429;
|
background-color: #8dc429;
|
||||||
}
|
}
|
||||||
.item--state-nolight {
|
|
||||||
background-color: default;
|
|
||||||
}
|
|
||||||
|
|
||||||
.list {
|
.list {
|
||||||
margin-bottom: 5px;
|
margin-bottom: 5px;
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user