Merge pull request #7975 from Gamboster/fix/recentTxStyles

[v4] Fix: Styles for recent Txs
This commit is contained in:
Gustavo Maximiliano Cortez 2018-02-01 11:03:13 -03:00 committed by GitHub
commit 2506df8423
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 5 deletions

View File

@ -7,20 +7,20 @@
</ion-header>
<ion-content>
<div *ngIf="fetchingNotifications">
<div text-center *ngIf="fetchingNotifications">
<ion-spinner></ion-spinner>
<span translate>Updating... Please stand by</span>
</div>
<ion-list *ngIf="notifications && notifications[0] && !fetchingNotifications">
<ion-item *ngFor="let notification of notifications" (click)="openNotificationModal(notification)">
<span *ngFor="let notification of notifications" (click)="openNotificationModal(notification)">
<page-wallet-activity [notification]="notification"></page-wallet-activity>
</ion-item>
</span>
</ion-list>
<ion-list *ngIf="notifications && !notifications[0] && !fetchingNotifications">
<ion-item>
<ion-item text-center>
<span translate>No pending proposals</span>
</ion-item>
</ion-list>
</ion-content>
</ion-content>

View File

@ -8,6 +8,7 @@ page-txp{
display: -webkit-inline-box;
}
.action {
width: 100%;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;