diff options
author | Dan Finlay <dan@danfinlay.com> | 2016-06-15 06:24:47 +0800 |
---|---|---|
committer | Dan Finlay <dan@danfinlay.com> | 2016-06-15 06:24:47 +0800 |
commit | 9417b92e445e4fd7f2b6016fbfff30331010d9b5 (patch) | |
tree | e6bec767e83048af2584fdded6b309dc3f1b9db8 /ui/app/accounts | |
parent | 76bd67a563c273b43f7148629be4695925989873 (diff) | |
download | tangerine-wallet-browser-9417b92e445e4fd7f2b6016fbfff30331010d9b5.tar tangerine-wallet-browser-9417b92e445e4fd7f2b6016fbfff30331010d9b5.tar.gz tangerine-wallet-browser-9417b92e445e4fd7f2b6016fbfff30331010d9b5.tar.bz2 tangerine-wallet-browser-9417b92e445e4fd7f2b6016fbfff30331010d9b5.tar.lz tangerine-wallet-browser-9417b92e445e4fd7f2b6016fbfff30331010d9b5.tar.xz tangerine-wallet-browser-9417b92e445e4fd7f2b6016fbfff30331010d9b5.tar.zst tangerine-wallet-browser-9417b92e445e4fd7f2b6016fbfff30331010d9b5.zip |
Let account address take more space in account list
Diffstat (limited to 'ui/app/accounts')
-rw-r--r-- | ui/app/accounts/account-panel.js | 24 |
1 files changed, 18 insertions, 6 deletions
diff --git a/ui/app/accounts/account-panel.js b/ui/app/accounts/account-panel.js index 8afb7308d..b49f4c098 100644 --- a/ui/app/accounts/account-panel.js +++ b/ui/app/accounts/account-panel.js @@ -4,7 +4,6 @@ const inherits = require('util').inherits const ethUtil = require('ethereumjs-util') const EtherBalance = require('../components/eth-balance') -const addressSummary = require('../util').addressSummary const copyToClipboard = require('copy-to-clipboard') const Identicon = require('../components/identicon') @@ -41,16 +40,29 @@ NewComponent.prototype.render = function() { ]), // account address, balance - h('.identity-data.flex-column.flex-justify-center.flex-grow.select-none', [ - + h('.identity-data.flex-column.flex-justify-center.flex-grow.select-none', { + style: { + width: '200px', + }, + }, [ h('span', identity.name), - h('span.font-small', addressSummary(identity.address)), + h('span.font-small', { + style: { + overflow: 'hidden', + textOverflow: 'ellipsis', + }, + }, ethUtil.toChecksumAddress(identity.address)), h(EtherBalance, { value: account.balance, }), ]), - h('.identity-copy.flex-column', [ + // copy button + h('.identity-copy.flex-column', { + style: { + margin: '0 20px', + }, + }, [ h('i.fa.fa-clipboard.fa-md.cursor-pointer.color-orange', { onClick: (event) => { event.stopPropagation() @@ -58,7 +70,7 @@ NewComponent.prototype.render = function() { copyToClipboard(ethUtil.toChecksumAddress(identity.address)) } }), - ]) + ]), ]) ) } |