aboutsummaryrefslogtreecommitdiffstats
path: root/ui
diff options
context:
space:
mode:
authorFrankie <frankie.pangilinan@consensys.net>2016-06-10 11:58:33 +0800
committerFrankie <frankie.pangilinan@consensys.net>2016-06-13 00:38:51 +0800
commit7d8bf31e826e168d8995ca9e71714969b9498d3b (patch)
treef4cec4d0af703d2d24d7d0969e83234cea0d7008 /ui
parent1987296af0aec096dfbb1622505d54aa8e56ad01 (diff)
downloadtangerine-wallet-browser-7d8bf31e826e168d8995ca9e71714969b9498d3b.tar.gz
tangerine-wallet-browser-7d8bf31e826e168d8995ca9e71714969b9498d3b.tar.zst
tangerine-wallet-browser-7d8bf31e826e168d8995ca9e71714969b9498d3b.zip
Fix edit text
and edit label alighment
Diffstat (limited to 'ui')
-rw-r--r--ui/app/account-detail.js2
-rw-r--r--ui/app/components/editable-label.js2
-rw-r--r--ui/app/css/index.css11
3 files changed, 7 insertions, 8 deletions
diff --git a/ui/app/account-detail.js b/ui/app/account-detail.js
index 7a0d5b23b..549fcca33 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),
]),
]),
diff --git a/ui/app/components/editable-label.js b/ui/app/components/editable-label.js
index c35f3261c..cdd0c4c10 100644
--- a/ui/app/components/editable-label.js
+++ b/ui/app/components/editable-label.js
@@ -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..ffe496458 100644
--- a/ui/app/css/index.css
+++ b/ui/app/css/index.css
@@ -367,20 +367,19 @@ input.large-input {
}
.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 */