Remove qr code icon and reorder to have clipboard first

feature/default_network_editable
Frankie 9 years ago
parent 7d8bf31e82
commit 88ed93afd9
  1. 19
      ui/app/account-detail.js
  2. 5
      ui/app/css/index.css

@ -118,16 +118,19 @@ AccountDetailScreen.prototype.render = function() {
},
}, addressSummary(selected)),
h('i.fa.fa-download.fa-md.cursor-pointer.color-orange', {
onClick: () => this.requestAccountExport(selected),
}),
h('i.fa.fa-qrcode.fa-md.cursor-disabled.color-orange', {
onClick: () => console.warn('QRCode not implented...'),
h('i.fa.fa-clipboard.fa-md.cursor-pointer.color-orange', {
onClick: () => copyToClipboard(ethUtil.toChecksumAddress(selected)),
style:{
marginLeft: '64px',
},
}),
h('i.fa.fa-clipboard.fa-md.cursor-pointer.color-orange', {
onClick: () => copyToClipboard(ethUtil.toChecksumAddress(selected)),
h('i.fa.fa-download.fa-md.cursor-pointer.color-orange', {
onClick: () => this.requestAccountExport(selected),
style:{
position: 'relative',
right: '32px',
},
}),
]),

@ -365,7 +365,10 @@ input.large-input {
.account-detail-section {
}
.name-label{
position: relative;
bottom: 14px;
}
.edit-text {
height: 100%;
visibility: hidden;

Loading…
Cancel
Save