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 const { transaction, txParams, isMsg } = this.props
switch (transaction.status) { switch (transaction.status) {
case 'unapproved': case 'unapproved':
return h( !isMsg ? '.unapproved-tx-icon' : 'i.fa.fa-certificate.fa-lg', { return h( !isMsg ? '.unapproved-tx-icon' : 'i.fa.fa-certificate.fa-lg')
style: {
width: '24px',
},
})
case 'rejected': case 'rejected':
return h('i.fa.fa-exclamation-triangle.fa-lg.warning', { return h('i.fa.fa-exclamation-triangle.fa-lg.warning', {

View File

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