1
0
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:
Dan Finlay 2016-06-14 12:43:43 -07:00
parent 761498cdbf
commit e76a628a5b

View File

@ -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',