Minor fixes in login screen

stable
Xavier Julián 2014-06-24 13:30:16 +02:00
parent 140eb6d6c6
commit 98fdcf4d71
3 changed files with 9 additions and 6 deletions

View File

@ -7,8 +7,8 @@ div.login-form-container
//-This should be hidden when focus on pass //-This should be hidden when focus on pass
a.forgot-pass(href="", title="Did you forgot your pass?") Forgot it? a.forgot-pass(href="", title="Did you forgot your pass?") Forgot it?
fieldset fieldset
input.remember-me(type="checkbox", checked="checked") input.remember-me(type="checkbox", checked="checked", id="remember-me")
label remember me on this computer label(for="remember-me") remember me on this computer
fieldset fieldset
a.button.button-login.button-green(href="", title="Log in") Enter a.button.button-login.button-green(href="", title="Log in") Enter
p.login-text p.login-text

View File

@ -32,9 +32,6 @@
color: $gray-light; color: $gray-light;
} }
} }
.remember-me {
vertical-align: top;
}
.login-text, .login-text,
.register-text { .register-text {
text-align: center; text-align: center;

View File

@ -5,8 +5,8 @@
} }
input:focus { input:focus {
&+.forgot-pass { &+.forgot-pass {
opacity: 0;
@include transition(opacity .5s linear); @include transition(opacity .5s linear);
opacity: 0;
} }
} }
.forgot-pass { .forgot-pass {
@ -22,4 +22,10 @@
color: $grayer; color: $grayer;
} }
} }
.remember-me {
vertical-align: top;
&+label {
cursor: pointer;
}
}
} }