Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions src/pages/wallet-details/wallet-details.html
Original file line number Diff line number Diff line change
Expand Up @@ -94,13 +94,13 @@
<img class="auditable-text" *ngIf="wallet.cachedStatus && wallet.cachedStatus.wallet && wallet.cachedStatus.wallet.singleAddress && isUtxoCoin()" src="assets/img/icon-text-auditable.svg">
<img class="custom-bws" *ngIf="wallet.usingCustomBWS" src="assets/img/icon-bws-white.svg">
<img class="encrypted" *ngIf="wallet.isPrivKeyEncrypted" src="assets/img/icon-lock-white.svg">
<span class="wallet-type" *ngIf="wallet.linkedEthWalletName">
<span translate>Linked to wallet: {{wallet.linkedEthWalletName}}</span>
<span class="token" *ngIf="wallet.linkedEthWalletName">
<span>{{'Linked to wallet: {linkedEthWalletName}' | translate : {linkedEthWalletName: wallet.linkedEthWalletName} }}</span>
</span>
<span class="wallet-type" *ngIf="wallet.credentials.n > 1">
<span translate>{{wallet.m}}-of-{{wallet.n}}</span>
</span>
</div>
</div>

<button ion-button clear class="search-button" *ngIf="wallet && wallet.completeHistory && wallet.completeHistory.length > 4 && !shouldShowSpinner()" (click)="openSearchModal()">
<img src="assets/img/search.svg">
Expand Down Expand Up @@ -274,4 +274,4 @@
</div>
</div>
</div>
</ion-content>
</ion-content>
13 changes: 13 additions & 0 deletions src/pages/wallet-details/wallet-details.scss
Original file line number Diff line number Diff line change
Expand Up @@ -297,6 +297,19 @@ page-wallet-details {
font-size: 11px;
}

.token {
vertical-align: text-top;
span {
border: 1px solid #ffffff8f;
padding: 0 3px 0 3px;
border-radius: 3px;
font-weight: 600;
font-size: 11px;
letter-spacing: -0.2px;
white-space: nowrap;
}
}

.left-buttons {
flex-grow: 1;
padding-left: 1.3rem;
Expand Down