fix(auth): hard-code auth styles

pull/46/head
kostya.danovsky 2016-05-14 00:26:15 +03:00
parent b2fd6908d0
commit ea29443d4e
1 changed files with 8 additions and 6 deletions

View File

@ -14,14 +14,16 @@ body {
height: 100%; height: 100%;
} }
$text-color: #ffffff;
.form-control, .form-control:focus { .form-control, .form-control:focus {
@include placeholderStyle($default, 0.9); @include placeholderStyle($text-color, 0.9);
background-color: rgba(0, 0, 0, .4); background-color: rgba(0, 0, 0, .4);
border-radius: 5px; border-radius: 5px;
color: $default; color: $text-color;
} }
.form-control[disabled], .form-control[readonly], fieldset[disabled] .form-control { .form-control[disabled], .form-control[readonly], fieldset[disabled] .form-control {
@include placeholderStyle($default, 0.6); @include placeholderStyle($text-color, 0.6);
} }
.auth-main { .auth-main {
@ -58,7 +60,7 @@ body {
.control-label { .control-label {
padding-top: 11px; padding-top: 11px;
color: $default; color: $text-color;
} }
.form-group { .form-group {
@ -108,14 +110,14 @@ a.forgot-pass {
width: 30%; width: 30%;
white-space: nowrap; white-space: nowrap;
padding: 0 24px; padding: 0 24px;
color: $default; color: $text-color;
& > span { & > span {
margin-top: -12px; margin-top: -12px;
display: block; display: block;
} }
} }
&:before, &:after { &:before, &:after {
border-top: solid 1px $default; border-top: solid 1px $text-color;
content: ""; content: "";
height: 1px; height: 1px;
width: 35%; width: 35%;