mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-23 09:52:26 +01:00
Remove qr code icon and reorder to have clipboard first
This commit is contained in:
parent
7d8bf31e82
commit
88ed93afd9
@ -118,16 +118,19 @@ AccountDetailScreen.prototype.render = function() {
|
|||||||
},
|
},
|
||||||
}, addressSummary(selected)),
|
}, addressSummary(selected)),
|
||||||
|
|
||||||
|
h('i.fa.fa-clipboard.fa-md.cursor-pointer.color-orange', {
|
||||||
|
onClick: () => copyToClipboard(ethUtil.toChecksumAddress(selected)),
|
||||||
|
style:{
|
||||||
|
marginLeft: '64px',
|
||||||
|
},
|
||||||
|
}),
|
||||||
|
|
||||||
h('i.fa.fa-download.fa-md.cursor-pointer.color-orange', {
|
h('i.fa.fa-download.fa-md.cursor-pointer.color-orange', {
|
||||||
onClick: () => this.requestAccountExport(selected),
|
onClick: () => this.requestAccountExport(selected),
|
||||||
}),
|
style:{
|
||||||
|
position: 'relative',
|
||||||
h('i.fa.fa-qrcode.fa-md.cursor-disabled.color-orange', {
|
right: '32px',
|
||||||
onClick: () => console.warn('QRCode not implented...'),
|
},
|
||||||
}),
|
|
||||||
|
|
||||||
h('i.fa.fa-clipboard.fa-md.cursor-pointer.color-orange', {
|
|
||||||
onClick: () => copyToClipboard(ethUtil.toChecksumAddress(selected)),
|
|
||||||
}),
|
}),
|
||||||
|
|
||||||
]),
|
]),
|
||||||
|
@ -365,7 +365,10 @@ input.large-input {
|
|||||||
.account-detail-section {
|
.account-detail-section {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
.name-label{
|
||||||
|
position: relative;
|
||||||
|
bottom: 14px;
|
||||||
|
}
|
||||||
.edit-text {
|
.edit-text {
|
||||||
height: 100%;
|
height: 100%;
|
||||||
visibility: hidden;
|
visibility: hidden;
|
||||||
|
Loading…
Reference in New Issue
Block a user