From 6187f0801cff9e094338e766daf3bc669facfbde Mon Sep 17 00:00:00 2001 From: Shane Tomlinson <stomlinson@mozilla.com> Date: Tue, 29 Nov 2011 11:05:01 +0000 Subject: [PATCH] Making the "use another email address" link more discoverable. * Change the text from "use another" to "use another email address" * Make the link bold so that it stands out. issue #623 --- resources/static/css/common.css | 4 +++- resources/static/css/style.css | 1 - resources/static/dialog/views/confirmemail.ejs | 2 +- resources/views/forgot.ejs | 2 +- resources/views/signup.ejs | 2 +- 5 files changed, 6 insertions(+), 5 deletions(-) diff --git a/resources/static/css/common.css b/resources/static/css/common.css index bff5e5410..d59e35063 100644 --- a/resources/static/css/common.css +++ b/resources/static/css/common.css @@ -249,4 +249,6 @@ footer .help { cursor: help; } - +.cancelVerify { + font-weight: bold; +} diff --git a/resources/static/css/style.css b/resources/static/css/style.css index 7bfd94681..b3b2c815c 100644 --- a/resources/static/css/style.css +++ b/resources/static/css/style.css @@ -65,7 +65,6 @@ noscript { #content { padding: 84px 0; - /* display: none;*/ } #about { diff --git a/resources/static/dialog/views/confirmemail.ejs b/resources/static/dialog/views/confirmemail.ejs index 51488eda9..2afe16937 100644 --- a/resources/static/dialog/views/confirmemail.ejs +++ b/resources/static/dialog/views/confirmemail.ejs @@ -1,5 +1,5 @@ <h2>Check your email!</h2> <p>We sent a confirmation email to <strong><%= email %></strong></p> <p>To finish signing in just click the verify link we sent to your email address.</p><br /> - <p>If this is a mistake, just ignore the sent email and <a href="#" id="back">use another</a>.</p> + <p>If this is a mistake, just ignore the sent email and <a href="#" class="cancelVerify" id="back">use another email address</a>.</p> diff --git a/resources/views/forgot.ejs b/resources/views/forgot.ejs index ab47040c2..240e2dc46 100644 --- a/resources/views/forgot.ejs +++ b/resources/views/forgot.ejs @@ -15,7 +15,7 @@ <br /> <p> - If this is a mistake, just ignore the sent email and <a href="/signup" id="back">use another</a>. + If this is a mistake, just ignore the sent email and <a href="/signup" class="cancelVerify" id="back">use another email address</a>. </p> </div> </div> diff --git a/resources/views/signup.ejs b/resources/views/signup.ejs index 0ded97bf0..1b2600c13 100644 --- a/resources/views/signup.ejs +++ b/resources/views/signup.ejs @@ -23,7 +23,7 @@ <br /> <p> - If this is a mistake, just ignore the sent email and <a href="/signup" id="back">use another</a>. + If this is a mistake, just ignore the sent email and <a href="/signup" class="cancelVerify" id="back">use another email address</a>. </p> </li> -- GitLab