Minor fixes in login screen
parent
140eb6d6c6
commit
98fdcf4d71
|
@ -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
|
||||||
|
|
|
@ -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;
|
||||||
|
|
|
@ -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;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue