low fee warning on wallet details view
This commit is contained in:
parent
5e7956ca6e
commit
0a3cc34e61
2 changed files with 19 additions and 1 deletions
|
|
@ -209,6 +209,20 @@
|
||||||
font-size: 13px;
|
font-size: 13px;
|
||||||
color: $v-mid-gray;
|
color: $v-mid-gray;
|
||||||
}
|
}
|
||||||
|
.low-fees {
|
||||||
|
.comment {
|
||||||
|
color: $v-mid-gray;
|
||||||
|
font-size: 12.5px;
|
||||||
|
overflow: hidden;
|
||||||
|
text-overflow: ellipsis;
|
||||||
|
white-space: nowrap;
|
||||||
|
margin-left: 25px;
|
||||||
|
}
|
||||||
|
img {
|
||||||
|
position: absolute;
|
||||||
|
margin-top: 3px;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.wallet-details-wallet-info {
|
.wallet-details-wallet-info {
|
||||||
|
|
|
||||||
|
|
@ -238,6 +238,10 @@
|
||||||
<div ng-show="btx.action == 'received'" class="ellipsis">
|
<div ng-show="btx.action == 'received'" class="ellipsis">
|
||||||
<div ng-if="btx.note.body" class="wallet-details__tx-message ellipsis">{{btx.note.body}}</div>
|
<div ng-if="btx.note.body" class="wallet-details__tx-message ellipsis">{{btx.note.body}}</div>
|
||||||
<div ng-if="!btx.note.body" class="wallet-details__tx-message ellipsis" translate>Received</div>
|
<div ng-if="!btx.note.body" class="wallet-details__tx-message ellipsis" translate>Received</div>
|
||||||
|
<div class="low-fees" ng-if="btx.lowFees">
|
||||||
|
<i class="icon"><img src="img/icon-warning.png" width="20px"></i>
|
||||||
|
<span class="comment" translate>Low fees</span>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div ng-show="btx.action == 'sent'" class="ellipsis">
|
<div ng-show="btx.action == 'sent'" class="ellipsis">
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue