From d990a8eb86a231170194e8c4497deac5aa199c1d Mon Sep 17 00:00:00 2001 From: Dan Date: Thu, 24 Aug 2017 13:54:48 -0230 Subject: Add 'customize' text to gas input. --- ui/app/css/itcss/components/send.scss | 12 +++++++++++- ui/app/send.js | 4 ++++ 2 files changed, 15 insertions(+), 1 deletion(-) (limited to 'ui') diff --git a/ui/app/css/itcss/components/send.scss b/ui/app/css/itcss/components/send.scss index 7c84d3b9f..838e00b00 100644 --- a/ui/app/css/itcss/components/send.scss +++ b/ui/app/css/itcss/components/send.scss @@ -45,6 +45,7 @@ .send-screen-input-wrapper { width: 95%; + position: relative; } .send-screen-input { @@ -70,4 +71,13 @@ justify-content: space-between; } -.send-screen-bolt-icon {} \ No newline at end of file +.send-screen-bolt-icon {} + +.send-screen-gas-input-customize { + position: absolute; + top: 30px; + right: 18px; + color: #3098DC; + font-size: 12px; + cursor: pointer; +} \ No newline at end of file diff --git a/ui/app/send.js b/ui/app/send.js index ef4e92e26..c77bc49f9 100644 --- a/ui/app/send.js +++ b/ui/app/send.js @@ -216,6 +216,10 @@ SendTransactionScreen.prototype.render = function () { placeholder: '0', }, []), + h('div.send-screen-gas-input-customize', {}, [ + 'Customize' + ]), + ]), h('div.send-screen-input-wrapper', {}, [ -- cgit