From 4200eeeeed94ceafc095ab027b1a50dab592b23e Mon Sep 17 00:00:00 2001 From: Frankie Date: Fri, 24 Jun 2016 15:13:48 -0700 Subject: [PATCH 1/2] Fix editable button so that it dosent float above the drop down menue --- ui/app/css/index.css | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/ui/app/css/index.css b/ui/app/css/index.css index f0e7dc794..24497a66f 100644 --- a/ui/app/css/index.css +++ b/ui/app/css/index.css @@ -228,10 +228,8 @@ app sections font-size: 1em; height: 31px; } - -.editable-button{ - position: relative; - bottom: 2px; +.editable-label{ + display: flex; } /* Webkit */ .unlock-screen input::-webkit-input-placeholder { From ef743499cb93dc8360be20db03c4ab0676aa57bb Mon Sep 17 00:00:00 2001 From: Frankie Date: Fri, 24 Jun 2016 17:54:09 -0700 Subject: [PATCH 2/2] Fix for the mailto link --- ui/app/info.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/app/info.js b/ui/app/info.js index 32b5a22e8..a473f5921 100644 --- a/ui/app/info.js +++ b/ui/app/info.js @@ -97,9 +97,9 @@ InfoScreen.prototype.render = function () { h('div.fa.fa-envelope', [ h('a.info', { - href: 'mailto:hello@metamask.io?subject=Feedback', target: '_blank', style: { width: '85vw' }, + onClick () { chrome.tabs.create({url: 'mailto:help@metamask.io?subject=Feedback'}) }, }, 'Email us any questions or comments!'), ]),