FEATURE: New login / create account form layout
This commit is contained in:
parent
1948a9912c
commit
4a2931f43d
|
@ -1,62 +1,175 @@
|
||||||
// style that apply to the login popup
|
// -webkit- prefix needed for
|
||||||
|
// flexbox on Safari 8
|
||||||
|
// can be removed once support
|
||||||
|
// for safari 8 is dropped
|
||||||
|
|
||||||
.btn-social {
|
// shared styles
|
||||||
width: 150px;
|
// used in both login and
|
||||||
font-size: $font-up-1;
|
// create account modals
|
||||||
overflow: hidden;
|
.login-modal,
|
||||||
white-space: nowrap;
|
.create-account {
|
||||||
}
|
.modal-body {
|
||||||
|
display: -webkit-flex;
|
||||||
#login-buttons {
|
-webkit-align-items: center;
|
||||||
button {
|
-webkit-flex-direction: column-reverse;
|
||||||
margin: 0 0 5px 0;
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
flex-direction: column-reverse;
|
||||||
}
|
}
|
||||||
display: inline-block;
|
|
||||||
}
|
|
||||||
|
|
||||||
#login-form {
|
.modal-inner-container {
|
||||||
|
max-width: 350px;
|
||||||
label { float: left; display: block; }
|
}
|
||||||
textarea, input, select {
|
|
||||||
font-size: $font-up-1;
|
#login-buttons:not(.hidden) {
|
||||||
clear: left;
|
display: -webkit-flex;
|
||||||
margin-top: 0;
|
-webkit-flex-wrap: wrap;
|
||||||
|
-webkit-justify-content: center;
|
||||||
|
display: flex;
|
||||||
|
flex-wrap: wrap;
|
||||||
|
justify-content: center;
|
||||||
|
width: 100%;
|
||||||
|
padding-bottom: 1em;
|
||||||
|
|
||||||
|
button {
|
||||||
|
margin: 0.15em;
|
||||||
|
max-width: 50%;
|
||||||
|
min-width: 158px;
|
||||||
|
font-size: $font-up-1;
|
||||||
|
overflow: hidden;
|
||||||
|
white-space: nowrap;
|
||||||
}
|
}
|
||||||
td { padding: 4px; }
|
}
|
||||||
}
|
|
||||||
|
|
||||||
a#new-account-link { white-space:nowrap; }
|
#login-form,
|
||||||
|
.login-form {
|
||||||
|
border-top: 1px solid $primary-low;
|
||||||
|
}
|
||||||
|
|
||||||
// Create account
|
form {
|
||||||
|
display: -webkit-flex;
|
||||||
|
-webkit-justify-content: center;
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
width: 320px;
|
||||||
|
}
|
||||||
|
|
||||||
|
table {
|
||||||
|
width: 100%;
|
||||||
|
max-width: 90vw; // Iphone 5s
|
||||||
|
margin: 0 auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
tr {
|
||||||
|
&.input td label {
|
||||||
|
margin-top: 0.75em;
|
||||||
|
}
|
||||||
|
|
||||||
|
&:not(.instructions) td {
|
||||||
|
padding: 2px 0 0 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
&:not(.password-confirmation) {
|
||||||
|
display: -webkit-flex;
|
||||||
|
-webkit-flex-direction: column;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.tip {
|
||||||
|
&:not(:empty) + td {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
&:not(:empty),
|
||||||
|
&:empty + td {
|
||||||
|
font-size: $font-down-1;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.modal-body input[type="text"],
|
||||||
|
.modal-body input[type="email"],
|
||||||
|
.modal-body input[type="password"] {
|
||||||
|
margin-top: 0;
|
||||||
|
width: 100%;
|
||||||
|
box-sizing: border-box;
|
||||||
|
}
|
||||||
|
|
||||||
|
.modal-footer {
|
||||||
|
width: 330px;
|
||||||
|
box-sizing: border-box;
|
||||||
|
margin: 0 auto;
|
||||||
|
}
|
||||||
|
|
||||||
.login-modal, .create-account {
|
|
||||||
.btn-primary {
|
.btn-primary {
|
||||||
margin-bottom: 10px;
|
margin-bottom: 10px;
|
||||||
float: left;
|
float: left;
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
|
.alert.alert-error {
|
||||||
$label-width: 85px;
|
padding: 0.5em 1em;
|
||||||
$input-width: 184px;
|
margin: 0;
|
||||||
|
|
||||||
.create-account .modal-body {
|
|
||||||
input[type=text], input[type=email], input[type=password] {
|
|
||||||
display: inline-block;
|
|
||||||
margin-bottom: 5px;
|
|
||||||
margin-top: 10px;
|
|
||||||
width: $input-width;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
tr.instructions {
|
#new-account-link {
|
||||||
label {
|
white-space: nowrap;
|
||||||
color: dark-light-choose($primary-medium, $secondary-medium);
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Styles for the
|
||||||
|
// login modal only
|
||||||
|
.d-modal.login-modal {
|
||||||
|
.modal-body {
|
||||||
|
-webkit-flex-direction: column;
|
||||||
|
flex-direction: column;
|
||||||
|
}
|
||||||
|
|
||||||
|
#credentials {
|
||||||
|
width: 100%;
|
||||||
|
tr {
|
||||||
|
display: -webkit-flex;
|
||||||
|
-webkit-flex-direction: column;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
tr.input {
|
#login-form {
|
||||||
td.label {
|
td {
|
||||||
width: $label-width;
|
padding: 0;
|
||||||
|
width: 100%;
|
||||||
|
margin: 0 auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
label {
|
||||||
|
float: left;
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
textarea,
|
||||||
|
input,
|
||||||
|
select {
|
||||||
|
font-size: $font-up-1;
|
||||||
|
clear: left;
|
||||||
|
margin-top: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
tr {
|
||||||
|
td label {
|
||||||
|
margin-top: 0.75em;
|
||||||
|
padding: 4px 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// styles for the
|
||||||
|
// create account
|
||||||
|
// modal only
|
||||||
|
.create-account .modal-body {
|
||||||
|
tr.instructions {
|
||||||
|
label {
|
||||||
|
color: dark-light-choose($primary-medium, $secondary-medium);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -65,31 +178,17 @@ $input-width: 184px;
|
||||||
.user-fields {
|
.user-fields {
|
||||||
margin-top: 10px;
|
margin-top: 10px;
|
||||||
padding-top: 15px;
|
padding-top: 15px;
|
||||||
border-top: 1px solid #e9e9e9;
|
border-top: 1px solid $primary-low;
|
||||||
}
|
}
|
||||||
|
|
||||||
.user-field.confirm {
|
.user-field.confirm {
|
||||||
margin-top: 10px;
|
margin-top: 10px;
|
||||||
margin-bottom: 10px;
|
margin-bottom: 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.user-field {
|
|
||||||
label {
|
|
||||||
width: $label-width;
|
|
||||||
}
|
|
||||||
|
|
||||||
input[type=text] {
|
|
||||||
margin-top: 0;
|
|
||||||
width: $input-width;
|
|
||||||
}
|
|
||||||
.controls {
|
|
||||||
margin-left: $label-width;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.password-reset,
|
||||||
.password-reset, .invites-show {
|
.invites-show {
|
||||||
margin-top: 30px;
|
margin-top: 30px;
|
||||||
.col-image {
|
.col-image {
|
||||||
padding-top: 12px;
|
padding-top: 12px;
|
||||||
|
@ -120,7 +219,6 @@ $input-width: 184px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
.invites-show {
|
.invites-show {
|
||||||
.col-image {
|
.col-image {
|
||||||
display: none;
|
display: none;
|
||||||
|
|
Loading…
Reference in New Issue