Skip to content
Snippets Groups Projects
Commit 082d1672 authored by Sean McArthur's avatar Sean McArthur
Browse files

Merge pull request #2199 from mozilla/issue_2106_2113_tooltips

Move tooltips to where they are less obtrusive.
parents eafc9bd1 82f5e9dc
No related branches found
No related tags found
No related merge requests found
...@@ -25,6 +25,10 @@ ...@@ -25,6 +25,10 @@
<div id="could_not_add" class="tooltip" for="email"> <div id="could_not_add" class="tooltip" for="email">
<%= gettext('We just sent an email to that address! If you really want to send another, wait a minute or two and try again.') %> <%= gettext('We just sent an email to that address! If you really want to send another, wait a minute or two and try again.') %>
</div> </div>
<div id="cannot_authenticate" class="tooltip" for="email">
<%= gettext('This email address and password do not match.') %>
</div>
</li> </li>
...@@ -42,9 +46,6 @@ ...@@ -42,9 +46,6 @@
<%= gettext('The password field is required.') %> <%= gettext('The password field is required.') %>
</div> </div>
<div id="cannot_authenticate" class="tooltip" for="password">
<%= gettext('This email address and password do not match.') %>
</div>
</li> </li>
</ul> </ul>
......
...@@ -35,6 +35,10 @@ ...@@ -35,6 +35,10 @@
<div id="could_not_add" class="tooltip" for="password"> <div id="could_not_add" class="tooltip" for="password">
<%= gettext('We just sent an email to that address! If you really want to send another, wait a minute or two and try again.') %> <%= gettext('We just sent an email to that address! If you really want to send another, wait a minute or two and try again.') %>
</div> </div>
<div class="tooltip" id="passwords_no_match" for="password">
<%= gettext('These passwords don\'t match!') %>
</div>
</li> </li>
<li> <li>
...@@ -45,9 +49,6 @@ ...@@ -45,9 +49,6 @@
<%= gettext('Verification password is required.') %> <%= gettext('Verification password is required.') %>
</div> </div>
<div class="tooltip" id="passwords_no_match" for="vpassword">
<%= gettext('These passwords don\'t match!') %>
</div>
</li> </li>
</ul> </ul>
......
...@@ -39,6 +39,11 @@ ...@@ -39,6 +39,11 @@
<%- gettext('We just sent an email to that address! If you really want to send another, wait a minute or two and try again.') %> <%- gettext('We just sent an email to that address! If you really want to send another, wait a minute or two and try again.') %>
</div> </div>
<div id="cannot_authenticate" class="tooltip" for="email">
<%- gettext('This email address and password do not match.') %>
</div>
</li> </li>
<li class="password_entry vpassword_entry"> <li class="password_entry vpassword_entry">
...@@ -51,14 +56,13 @@ ...@@ -51,14 +56,13 @@
<%- gettext('The password field is required.') %> <%- gettext('The password field is required.') %>
</div> </div>
<div id="cannot_authenticate" class="tooltip" for="password">
<%- gettext('This email address and password do not match.') %>
</div>
<div class="tooltip" id="password_length" for="password"> <div class="tooltip" id="password_length" for="password">
<%- gettext('Password must be between 8 and 80 characters long.') %> <%- gettext('Password must be between 8 and 80 characters long.') %>
</div> </div>
<div class="tooltip" id="passwords_no_match" for="password">
<%- gettext('These passwords don\'t match!') %>
</div>
</li> </li>
<li class="vpassword_entry"> <li class="vpassword_entry">
...@@ -69,9 +73,6 @@ ...@@ -69,9 +73,6 @@
<%- gettext('Verification password is required.') %> <%- gettext('Verification password is required.') %>
</div> </div>
<div class="tooltip" id="passwords_no_match" for="vpassword">
<%- gettext('These passwords don\'t match!') %>
</div>
</li> </li>
</ul> </ul>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment