aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDan Finlay <somniac@me.com>2016-06-13 10:44:30 +0800
committerGitHub <noreply@github.com>2016-06-13 10:44:30 +0800
commitbba1ef1a715c7e8579be29096cee5013b75c0b18 (patch)
tree739e539d04aec5ab128b38d505b3b147c1fbc02e
parent1324d15b11ada8ca57c6d34fc5ba8ec1bfd354b9 (diff)
parente185ffac62a9bc46936a2878e5ce5d4de7f5bef1 (diff)
downloadtangerine-wallet-browser-bba1ef1a715c7e8579be29096cee5013b75c0b18.tar.gz
tangerine-wallet-browser-bba1ef1a715c7e8579be29096cee5013b75c0b18.tar.zst
tangerine-wallet-browser-bba1ef1a715c7e8579be29096cee5013b75c0b18.zip
Merge pull request #259 from MetaMask/uiFixes
Do a little UI house cleaning
-rw-r--r--CHANGELOG.md3
-rw-r--r--ui/app/account-detail.js21
-rw-r--r--ui/app/components/account-export.js6
-rw-r--r--ui/app/components/editable-label.js4
-rw-r--r--ui/app/css/index.css17
5 files changed, 31 insertions, 20 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 0d10f208f..31b4aff7a 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -2,6 +2,9 @@
## Current Master
+- Clean up UI
+- Remove nonfunctional QR code button
+
## 2.3.1 2016-06-09
- Style up the info page
diff --git a/ui/app/account-detail.js b/ui/app/account-detail.js
index 7a0d5b23b..5d74e571b 100644
--- a/ui/app/account-detail.js
+++ b/ui/app/account-detail.js
@@ -101,7 +101,7 @@ AccountDetailScreen.prototype.render = function() {
// What is shown when not editing + edit text:
h('label.editing-label',[h('.edit-text','edit')]),
- h('h2.font-medium.color-forest', {title: 'edit'}, identity && identity.name)
+ h('h2.font-medium.color-forest', {name: 'edit'}, identity && identity.name),
]),
]),
@@ -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/components/account-export.js b/ui/app/components/account-export.js
index eab9baf65..e31951a7d 100644
--- a/ui/app/components/account-export.js
+++ b/ui/app/components/account-export.js
@@ -42,8 +42,12 @@ ExportAccountView.prototype.render = function() {
}, [
h('p.error', warning),
h('p', confirmation),
- h('input#exportAccount', {
+ h('input#exportAccount.sizing-input', {
onKeyPress: this.onExportKeyPress.bind(this),
+ style: {
+ position: 'relative',
+ top: '1.5px',
+ }
}),
h('button', {
onClick: () => this.onExportKeyPress({ key: 'Enter', preventDefault: () => {} }),
diff --git a/ui/app/components/editable-label.js b/ui/app/components/editable-label.js
index c35f3261c..41c129d4e 100644
--- a/ui/app/components/editable-label.js
+++ b/ui/app/components/editable-label.js
@@ -18,7 +18,7 @@ EditableLabel.prototype.render = function() {
if (state && state.isEditingLabel) {
return h('div.editable-label', [
- h('input.editable-input', {
+ h('input.sizing-input', {
defaultValue: props.textValue,
onKeyPress:(event) => {
this.saveIfEnter(event)
@@ -30,7 +30,7 @@ EditableLabel.prototype.render = function() {
])
} else {
- return h('div', {
+ return h('div.name-label', {
onClick:(event) => {
this.setState({ isEditingLabel: true })
},
diff --git a/ui/app/css/index.css b/ui/app/css/index.css
index c33753888..7055b0d5c 100644
--- a/ui/app/css/index.css
+++ b/ui/app/css/index.css
@@ -223,7 +223,7 @@ app sections
padding: 8px;*/
}
-.editable-input{
+.sizing-input{
font-size: 1em;
height: 31px;
}
@@ -365,22 +365,23 @@ input.large-input {
.account-detail-section {
}
-
+.name-label{
+ margin-bottom: 14px;
+}
.edit-text {
- height: 15px;
+ height: 100%;
visibility: hidden;
}
.editing-label {
cursor: text;
- width: 60px;
- height: 20px;
- position: absolute;
+ width: 100%;
+ position: relative;
+ top: 7px;
text-align: right;
font-size: small;
- padding-top: 15px;
color: #F7861C;
}
-.editing-label:hover div{
+.name-label:hover .edit-text {
visibility: visible;
}
/* tx confirm */