mirror of
https://gerrit.wikimedia.org/r/mediawiki/skins/MinervaNeue
synced 2024-11-13 17:37:07 +00:00
c2fdf9404e
Bug: T232553 Change-Id: I274471bad1fa402ede4b273444023ea31d2bd502
158 lines
3.3 KiB
Plaintext
158 lines
3.3 KiB
Plaintext
@import '../../minerva.less/minerva.variables.less';
|
|
@import '../../minerva.less/minerva.mixins.less';
|
|
|
|
// Hide the texts inside these selectors because they push the login form below the fold
|
|
// `#user-button` serves no purpose on the login screen as you are not logged in so cannot use.
|
|
#userloginprompt,
|
|
#languagelinks,
|
|
#user-button {
|
|
display: none;
|
|
}
|
|
|
|
// `.messagebox` not needed here, as it's not used currently.
|
|
.errorbox,
|
|
.successbox,
|
|
.warningbox {
|
|
padding: 0.5em 1em;
|
|
margin: 1em 0;
|
|
}
|
|
|
|
.mw-ui-container {
|
|
.mw-ui-vform {
|
|
margin: auto;
|
|
width: auto;
|
|
max-width: @contentMaxWidthTablet;
|
|
}
|
|
|
|
.mw-form-related-link-container {
|
|
a {
|
|
padding-bottom: 12px;
|
|
display: block;
|
|
}
|
|
}
|
|
|
|
.fancycaptcha-image-container {
|
|
display: inherit;
|
|
}
|
|
|
|
// reason for account creation is not so important on mobile - it should be obvious through the workflows
|
|
.mw-createacct-benefits-container {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
#mw-mf-login,
|
|
#mw-mf-accountcreate,
|
|
#userloginForm {
|
|
.watermark {
|
|
text-align: center;
|
|
// FIXME: Should we set the height here?
|
|
height: 72px;
|
|
margin-bottom: @headingMargin;
|
|
|
|
img {
|
|
// Important to override default max-width and height auto combo
|
|
height: 72px !important;
|
|
}
|
|
}
|
|
}
|
|
|
|
// Hide keep me logged in checkbox on mobile. It will be marked as checked by default.
|
|
#userloginForm {
|
|
.mw-htmlform-field-HTMLCheckField {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
.client-nojs {
|
|
// Show keep me logged in checkbox for grade C users on mobile so that they can
|
|
// check the checkbox (we use JS to check this and that won't run on grade C bmode)
|
|
#userloginForm {
|
|
.mw-htmlform-field-HTMLCheckField {
|
|
display: block;
|
|
margin: 10px 0 11px;
|
|
}
|
|
}
|
|
}
|
|
|
|
@media all and ( min-width: @width-breakpoint-tablet ) {
|
|
// If tablet mode, show the keep me logged in checkbox
|
|
#userloginForm {
|
|
.mw-htmlform-field-HTMLCheckField {
|
|
display: block;
|
|
}
|
|
}
|
|
}
|
|
|
|
// FIXME: Some of these rules should actually be mobile first, only hiding inputs needs to be wrapped in a media query
|
|
@media all and ( max-width: @width-breakpoint-tablet ) {
|
|
@margin: 12px;
|
|
|
|
#userloginForm {
|
|
// tips are not useful
|
|
.prefsectiontip, .htmlform-tip,
|
|
// hide help link
|
|
#mw-userlogin-help, .mw-userlogin-help,
|
|
// benefits are obvious through the workflows
|
|
#wpReason,
|
|
// real name in account creation is not so important on mobile
|
|
#wpRealName {
|
|
display: none !important;
|
|
}
|
|
}
|
|
|
|
// do not show langage link list
|
|
// FIXME: After the language list is mobile friendly, it can be re-enabled - Bug T110403
|
|
#languagelinks {
|
|
display: none;
|
|
}
|
|
|
|
// account creation
|
|
#userlogin2 {
|
|
.mw-ui-checkbox {
|
|
margin: @margin 0;
|
|
}
|
|
}
|
|
|
|
.mw-ui-vform-field {
|
|
text-align: center;
|
|
}
|
|
|
|
// Make the inputs look connected in mobile mode
|
|
.mw-ui-input {
|
|
&#wpEmail,
|
|
&.loginPassword {
|
|
border-top-left-radius: 0;
|
|
border-top-right-radius: 0;
|
|
margin-top: -1px;
|
|
}
|
|
}
|
|
|
|
.mw-ui-vform {
|
|
margin: auto;
|
|
|
|
.mw-ui-input {
|
|
padding: 0.8em 0.5em;
|
|
}
|
|
|
|
// hide on mobile only media queries (placeholder support)
|
|
.mw-ui-vform-field {
|
|
margin-bottom: 0;
|
|
|
|
.mw-ui-button {
|
|
margin: @margin 0;
|
|
}
|
|
|
|
// user can rely on placeholder attributes in fields media query support should mean placeholder support
|
|
// but don't hide any checkbox labels
|
|
> label {
|
|
display: none;
|
|
}
|
|
}
|
|
}
|
|
|
|
#mw-createaccount-another {
|
|
margin-top: @margin;
|
|
}
|
|
}
|