Skip to content
This repository has been archived by the owner on Sep 11, 2020. It is now read-only.

Commit

Permalink
Fix positioning on forgot password
Browse files Browse the repository at this point in the history
  • Loading branch information
edpaget committed Sep 14, 2012
1 parent e26ff24 commit 70a6811
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 7 deletions.
13 changes: 9 additions & 4 deletions css/top_bar.styl
Original file line number Diff line number Diff line change
Expand Up @@ -115,11 +115,16 @@ body.show-top-bar
.progress
display: none

.inputs
display: inline
.inputs
display: inline-block

.buttons
display: inline
p
display: inline

.buttons
display: inline-block
position: relative
top: -28px

#zooniverse-top-bar-languages
float: right
Expand Down
10 changes: 7 additions & 3 deletions src/views/top_bar.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,13 @@ module.exports = """
<div id="zooniverse-top-bar-login">
<div class='login'>
<div class="inputs">
<input name="username" placeholder="username" type="text" />
<input name="password" placeholder="password" type="password" />
<p class="password-recovery"><a href="https://www.zooniverse.org/password/reset">Forgot Password?</a></p>
<div class="textboxs">
<input name="username" placeholder="username" type="text" />
<input name="password" placeholder="password" type="password" />
</div>
<div class="reset">
<p class="password-recovery"><a href="https://www.zooniverse.org/password/reset">Forgot Password?</a></p>
</div>
</div>
<div class="buttons">
<button name="login" type="button">Login</button>
Expand Down

0 comments on commit 70a6811

Please sign in to comment.