mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-23 09:52:26 +01:00
Insert vlad icons into UI
This commit is contained in:
parent
761498cdbf
commit
e76a628a5b
@ -78,7 +78,8 @@ AccountDetailScreen.prototype.render = function() {
|
|||||||
]),
|
]),
|
||||||
|
|
||||||
// small accounts nav
|
// small accounts nav
|
||||||
h('i.fa.fa-users.fa-lg.cursor-pointer.color-orange', {
|
h('img.cursor-pointer.color-orange', {
|
||||||
|
src: 'images/switch_acc.svg',
|
||||||
onClick: this.navigateToAccounts.bind(this),
|
onClick: this.navigateToAccounts.bind(this),
|
||||||
}),
|
}),
|
||||||
]),
|
]),
|
||||||
@ -118,14 +119,16 @@ AccountDetailScreen.prototype.render = function() {
|
|||||||
},
|
},
|
||||||
}, addressSummary(selected)),
|
}, addressSummary(selected)),
|
||||||
|
|
||||||
h('i.fa.fa-clipboard.fa-md.cursor-pointer.color-orange', {
|
h('img.cursor-pointer.color-orange', {
|
||||||
|
src: 'images/copy.svg',
|
||||||
onClick: () => copyToClipboard(ethUtil.toChecksumAddress(selected)),
|
onClick: () => copyToClipboard(ethUtil.toChecksumAddress(selected)),
|
||||||
style:{
|
style:{
|
||||||
marginLeft: '64px',
|
marginLeft: '64px',
|
||||||
},
|
},
|
||||||
}),
|
}),
|
||||||
|
|
||||||
h('i.fa.fa-download.fa-md.cursor-pointer.color-orange', {
|
h('img.fa-md.cursor-pointer.color-orange', {
|
||||||
|
src: 'images/download.svg',
|
||||||
onClick: () => this.requestAccountExport(selected),
|
onClick: () => this.requestAccountExport(selected),
|
||||||
style:{
|
style:{
|
||||||
position: 'relative',
|
position: 'relative',
|
||||||
|
Loading…
x
Reference in New Issue
Block a user