From 40338571fafbc956f46a7f1c7c8d6a6d7fdd3425 Mon Sep 17 00:00:00 2001 From: Frankie Date: Mon, 6 Jun 2016 03:14:10 -0400 Subject: Add edit label --- ui/app/css/index.css | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) (limited to 'ui/app/css/index.css') diff --git a/ui/app/css/index.css b/ui/app/css/index.css index f56e9fbc4..484b89f56 100644 --- a/ui/app/css/index.css +++ b/ui/app/css/index.css @@ -352,7 +352,28 @@ input.large-input { .account-detail-section { } +.editing-label{ + /* visibility: hidden; + border-color: #F7861C; + border-style: solid; + border-width: 1px;*/ +} +.edit-text { + visibility: hidden; +} +.editing-label { + width: 60px; + height: 40px; + position: absolute; + text-align: right; + font-size: small; + padding-top: 15px; + color: #F7861C; +} +.editing-label:hover div{ + visibility: visible; +} /* tx confirm */ .unconftx-section { -- cgit From 217dd9c95e2c398c07d5e88ef35bea0aad1e3a37 Mon Sep 17 00:00:00 2001 From: Frankie Date: Mon, 6 Jun 2016 03:30:26 -0400 Subject: Fix label size for edit label --- ui/app/css/index.css | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) (limited to 'ui/app/css/index.css') diff --git a/ui/app/css/index.css b/ui/app/css/index.css index 484b89f56..3d22a1c33 100644 --- a/ui/app/css/index.css +++ b/ui/app/css/index.css @@ -352,19 +352,15 @@ input.large-input { .account-detail-section { } -.editing-label{ - /* visibility: hidden; - border-color: #F7861C; - border-style: solid; - border-width: 1px;*/ -} .edit-text { + height: 15px; visibility: hidden; } .editing-label { + cursor: text; width: 60px; - height: 40px; + height: 20px; position: absolute; text-align: right; font-size: small; -- cgit From f59ca7a6bf42b0cae70aab838a08a7d15e192d10 Mon Sep 17 00:00:00 2001 From: Frankie Date: Mon, 6 Jun 2016 10:09:21 -0400 Subject: Add css to resize and alighn input for editable lable --- ui/app/css/index.css | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'ui/app/css/index.css') diff --git a/ui/app/css/index.css b/ui/app/css/index.css index 3d22a1c33..fb2a1f552 100644 --- a/ui/app/css/index.css +++ b/ui/app/css/index.css @@ -219,6 +219,15 @@ app sections padding: 8px;*/ } +.editable-input{ + font-size: 1em; + height: 31px; +} + +.editable-button{ + position: relative; + bottom: 2px; +} /* Webkit */ .unlock-screen input::-webkit-input-placeholder { text-align: center; -- cgit