diff --git a/src/app/send/send.component.html b/src/app/send/send.component.html index 05153e710b..63a6a18253 100644 --- a/src/app/send/send.component.html +++ b/src/app/send/send.component.html @@ -43,14 +43,40 @@ [infiniteScrollContainer]="'#items .content'" [fromRoot]="true" (scrolled)="loadMore()"> -
diff --git a/src/locales/en/messages.json b/src/locales/en/messages.json index 8d123a8156..768a562ffb 100644 --- a/src/locales/en/messages.json +++ b/src/locales/en/messages.json @@ -1638,5 +1638,17 @@ }, "copyLink": { "message": "Copy link" + }, + "disabled": { + "message": "Disabled" + }, + "maxAccessCountReached": { + "message": "Max access count reached" + }, + "expired": { + "message": "Expired" + }, + "pendingDeletion": { + "message": "Pending deletion" } } diff --git a/src/scss/list.scss b/src/scss/list.scss index d323c9dfe9..5a50dd7ad5 100644 --- a/src/scss/list.scss +++ b/src/scss/list.scss @@ -101,3 +101,33 @@ } } } + +.list > a.flex-list-item { + display: flex; + align-items: center; + + .item-icon { + margin-left: -5px; + margin-right: 4px; + @include themify($themes) { + color: themed('mutedColor'); + } + } + + .item-content { + .item-title { + .title-badges { + @include themify($themes) { + color: themed('mutedColor'); + } + } + } + + .item-details { + font-size: $font-size-small; + @include themify($themes) { + color: themed('mutedColor'); + } + } + } +}