1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-12-23 09:52:26 +01:00

Improve pending tx blue dot style

This commit is contained in:
Dan Finlay 2017-02-23 17:45:37 -08:00
parent d1bce61996
commit 42c2c3df37
2 changed files with 4 additions and 9 deletions

View File

@ -15,11 +15,7 @@ TransactionIcon.prototype.render = function () {
const { transaction, txParams, isMsg } = this.props
switch (transaction.status) {
case 'unapproved':
return h( !isMsg ? '.unapproved-tx-icon' : 'i.fa.fa-certificate.fa-lg', {
style: {
width: '24px',
},
})
return h( !isMsg ? '.unapproved-tx-icon' : 'i.fa.fa-certificate.fa-lg')
case 'rejected':
return h('i.fa.fa-exclamation-triangle.fa-lg.warning', {

View File

@ -410,11 +410,10 @@ input.large-input {
}
.unapproved-tx-icon {
height: 24px;
background: #4dffff;
border: solid;
height: 16px;
width: 16px;
background: rgb(47, 174, 244);
border-color: #AEAEAE;
border-width: 0.5px;
border-radius: 13px;
}