style the summary items and labels
This commit is contained in:
parent
4c3a28c780
commit
1fc35956cb
@ -15,6 +15,16 @@
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.summary ion-label {
|
||||
color: #333;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.summary ion-item {
|
||||
color: #999;
|
||||
font-size: 1.4rem;
|
||||
}
|
||||
|
||||
// Shared Sass variables, which can be used to adjust Ionic's
|
||||
// default Sass variables, belong in "theme/variables.scss".
|
||||
//
|
||||
|
||||
@ -31,7 +31,7 @@
|
||||
<div>
|
||||
<p><a (click)="goToAddress(vin.addr)">{{ vin.addr }}</a> <span item-end>{{ vin.value + ' BTC' }}</span></p>
|
||||
<div [hidden]="!expanded">
|
||||
<p><b>Confirmations</b> {{vin.confirmations}}</p>
|
||||
<p *ngIf="vin.confirmations"><b>Confirmations</b> {{vin.confirmations}}</p>
|
||||
<p><b>scriptSig</b></p>
|
||||
<div *ngIf="vin.scriptSig">
|
||||
<div *ngFor="let item of vin.scriptSig.asm | split:' '" class="ellipsis">
|
||||
@ -44,10 +44,10 @@
|
||||
</ion-list>
|
||||
|
||||
</ion-col>
|
||||
<ion-col col-2 text-center>
|
||||
<ion-col col-1 text-center>
|
||||
<ion-icon name="arrow-forward"></ion-icon>
|
||||
</ion-col>
|
||||
<ion-col col-5>
|
||||
<ion-col col-6>
|
||||
<ion-list>
|
||||
<ion-item *ngFor="let vout of tx.vout">
|
||||
<div>
|
||||
|
||||
@ -9,7 +9,7 @@
|
||||
|
||||
<h2>Summary</h2>
|
||||
|
||||
<ion-list>
|
||||
<ion-list class="summary">
|
||||
<ion-item>
|
||||
Total Received
|
||||
<span item-end>
|
||||
|
||||
@ -8,9 +8,9 @@
|
||||
|
||||
<h2>Summary</h2>
|
||||
|
||||
<ion-list *ngIf="!loading">
|
||||
<ion-list *ngIf="!loading" class="summary">
|
||||
<ion-item>
|
||||
Number of Transactions
|
||||
Number of Transactions
|
||||
<span item-end>
|
||||
{{ block.tx.length }}
|
||||
</span>
|
||||
|
||||
@ -8,7 +8,7 @@
|
||||
|
||||
<h2>Summary</h2>
|
||||
|
||||
<ion-list>
|
||||
<ion-list class="summary">
|
||||
<ion-item>
|
||||
Size
|
||||
<span item-end>
|
||||
|
||||
Loading…
Reference in New Issue
Block a user