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

Show more address in detail view

This commit is contained in:
Dan Finlay 2016-06-14 14:29:08 -07:00
parent 6f07acc4be
commit d6ebae8c4f

View File

@ -108,7 +108,7 @@ AccountDetailScreen.prototype.render = function() {
]), ]),
// address and getter actions // address and getter actions
h('.flex-row.flex-space-between', { h('.flex-row', {
style: { style: {
marginBottom: 16, marginBottom: 16,
}, },
@ -116,15 +116,17 @@ AccountDetailScreen.prototype.render = function() {
h('div', { h('div', {
style: { style: {
lineHeight: '16px', overflow: 'hidden',
textOverflow: 'ellipsis',
paddingTop: '3px',
}, },
}, addressSummary(selected)), }, selected),
h('img.cursor-pointer.color-orange', { h('img.cursor-pointer.color-orange', {
src: 'images/copy.svg', src: 'images/copy.svg',
onClick: () => copyToClipboard(ethUtil.toChecksumAddress(selected)), onClick: () => copyToClipboard(ethUtil.toChecksumAddress(selected)),
style:{ style:{
marginLeft: '64px', margin: '0px 5px',
}, },
}), }),
@ -132,8 +134,7 @@ AccountDetailScreen.prototype.render = function() {
src: 'images/download.svg', src: 'images/download.svg',
onClick: () => this.requestAccountExport(selected), onClick: () => this.requestAccountExport(selected),
style:{ style:{
position: 'relative', margin: '0px 5px',
right: '32px',
}, },
}), }),