aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFrankie <frankie.pangilinan@consensys.net>2016-06-11 00:54:57 +0800
committerFrankie <frankie.pangilinan@consensys.net>2016-06-13 00:40:30 +0800
commit88ed93afd91a6a15f1c9df52347c8e5e3ebda841 (patch)
treef147a4ace26b3b9dc1e3719e07160c620352d7e8
parent7d8bf31e826e168d8995ca9e71714969b9498d3b (diff)
downloadtangerine-wallet-browser-88ed93afd91a6a15f1c9df52347c8e5e3ebda841.tar.gz
tangerine-wallet-browser-88ed93afd91a6a15f1c9df52347c8e5e3ebda841.tar.zst
tangerine-wallet-browser-88ed93afd91a6a15f1c9df52347c8e5e3ebda841.zip
Remove qr code icon and reorder to have clipboard first
-rw-r--r--ui/app/account-detail.js19
-rw-r--r--ui/app/css/index.css5
2 files changed, 15 insertions, 9 deletions
diff --git a/ui/app/account-detail.js b/ui/app/account-detail.js
index 549fcca33..5d74e571b 100644
--- a/ui/app/account-detail.js
+++ b/ui/app/account-detail.js
@@ -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',
+ },
}),
]),
diff --git a/ui/app/css/index.css b/ui/app/css/index.css
index ffe496458..2e0775724 100644
--- a/ui/app/css/index.css
+++ b/ui/app/css/index.css
@@ -365,7 +365,10 @@ input.large-input {
.account-detail-section {
}
-
+.name-label{
+ position: relative;
+ bottom: 14px;
+}
.edit-text {
height: 100%;
visibility: hidden;