- Switched the arrow colors for spent/unspent utxos

- Collapse dropdown on search (mobile)
This commit is contained in:
softsimon
2020-04-14 15:35:20 +07:00
parent c6909a5525
commit 0b20ed808e
3 changed files with 9 additions and 5 deletions

View File

@@ -23,7 +23,7 @@
</ng-template>
<ng-template #hasPrevout>
<a [routerLink]="['/tx/', vin.txid]">
<i class="arrow green"></i>
<i class="arrow red"></i>
</a>
</ng-template>
</td>
@@ -75,9 +75,9 @@
<td class="pl-1 arrow-td">
<i *ngIf="!outspends[i]; else outspend" class="arrow grey"></i>
<ng-template #outspend>
<i *ngIf="!outspends[i][vindex] || !outspends[i][vindex].spent; else spent" class="arrow red"></i>
<i *ngIf="!outspends[i][vindex] || !outspends[i][vindex].spent; else spent" class="arrow green"></i>
<ng-template #spent>
<a [routerLink]="['/tx/', outspends[i][vindex].txid]"><i class="arrow green"></i></a>
<a [routerLink]="['/tx/', outspends[i][vindex].txid]"><i class="arrow red"></i></a>
</ng-template>
</ng-template>
</td>