Styling for dropped.

feature/default_network_editable
Dan 7 years ago
parent d6e4d2e80d
commit e293b6349c
  1. 1
      ui/app/components/tx-list-item.js
  2. 4
      ui/app/css/itcss/components/transaction-list.scss

@ -253,6 +253,7 @@ TxListItem.prototype.render = function () {
className: classnames('tx-list-status', { className: classnames('tx-list-status', {
'tx-list-status--rejected': transactionStatus === 'rejected', 'tx-list-status--rejected': transactionStatus === 'rejected',
'tx-list-status--failed': transactionStatus === 'failed', 'tx-list-status--failed': transactionStatus === 'failed',
'tx-list-status--dropped': transactionStatus === 'dropped',
}), }),
}, },
transactionStatus, transactionStatus,

@ -236,6 +236,10 @@
.tx-list-status--failed { .tx-list-status--failed {
color: $monzo; color: $monzo;
} }
.tx-list-status--dropped {
opacity: 0.5;
}
} }
.tx-list-item { .tx-list-item {

Loading…
Cancel
Save