discourse/app/assets/stylesheets/mobile/login.scss

227 lines
3.5 KiB
SCSS

// -webkit- prefix needed for
// flexbox on Safari 8
// can be removed once support
// for safari 8 is dropped
// shared styles
// used in both login and
// create account modals
.login-modal,
.create-account {
.modal-body {
display: -webkit-flex;
-webkit-align-items: center;
-webkit-flex-direction: column-reverse;
display: flex;
align-items: center;
flex-direction: column-reverse;
}
.modal-inner-container {
max-width: 350px;
}
#login-buttons:not(.hidden) {
display: -webkit-flex;
-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;
}
}
#login-form,
.login-form {
border-top: 1px solid $primary-low;
}
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;
}
.btn-primary {
margin-bottom: 10px;
float: left;
}
.alert.alert-error {
padding: 0.5em 1em;
margin: 0;
}
#new-account-link {
white-space: nowrap;
}
}
// 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;
}
}
#login-form {
td {
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);
}
}
}
.create-account {
.user-fields {
margin-top: 10px;
padding-top: 15px;
border-top: 1px solid $primary-low;
}
.user-field.confirm {
margin-top: 10px;
margin-bottom: 10px;
}
}
.password-reset,
.invites-show {
margin-top: 30px;
.col-image {
padding-top: 12px;
}
.password-reset-img {
width: 50px;
height: 50px;
}
.col-form {
padding-left: 8px;
}
h2 {
margin-bottom: 12px;
}
.tip {
display: block;
margin: 6px 0;
}
}
.password-reset .tip {
max-width: 180px;
}
.discourse-touch .password-reset {
.instructions {
margin-bottom: 16px;
}
}
.invites-show {
.col-image {
display: none;
}
}