mirror of
https://gerrit.wikimedia.org/r/mediawiki/skins/MinervaNeue
synced 2024-11-17 11:13:34 +00:00
7280d255c0
* Remove ambiguity in imports - say the file extension 'less' for all instances of variables and mixins. * Separate toast styles from drawer styles so they can be imported separately * associate header-action selector with its parent (.overlay-header) not parent's parent (.overlay) so it can be imported and rendered without the Overlay. Change-Id: Ib7e19a440ba095d6424d35305fb41d643ca9764c
74 lines
1.3 KiB
Plaintext
74 lines
1.3 KiB
Plaintext
@import '../../minerva.less/minerva.variables.less';
|
|
@import '../../minerva.less/minerva.mixins.less';
|
|
|
|
/* fancycaptcha reload button */
|
|
.confirmedit-captcha-reload,
|
|
#mf-captcha-reload-container {
|
|
border-top: 1px dashed @colorGray12;
|
|
display: inline-block;
|
|
padding: 8px 20px;
|
|
|
|
.fancycaptcha-reload,
|
|
&.fancycaptcha-reload {
|
|
color: @colorProgressive;
|
|
}
|
|
}
|
|
|
|
.mw-createacct-captcha-assisted {
|
|
display: block;
|
|
border-top: solid 1px @colorGray12;
|
|
padding: 0.8em 0.5em;
|
|
color: @colorGray7;
|
|
}
|
|
|
|
.mw-ui-container {
|
|
// CAPTCHA style improvements
|
|
.captcha {
|
|
margin: 0.8em 0 0;
|
|
border: solid 1px @colorGray12;
|
|
border-radius: @borderRadius;
|
|
overflow: hidden;
|
|
background: #fff;
|
|
text-align: center;
|
|
|
|
input:not( [ type='submit' ] ) {
|
|
-webkit-appearance: none;
|
|
border-radius: 0;
|
|
padding: 0.8em 0.5em;
|
|
margin: 0;
|
|
}
|
|
|
|
input:not( [ type='submit' ] ),
|
|
img,
|
|
#wpCaptchaWord {
|
|
border: 0;
|
|
border-top: solid 1px @colorGray12;
|
|
|
|
&:first-child {
|
|
border-top: 0;
|
|
}
|
|
}
|
|
|
|
// CAPTCHA's are well known by internet users, save the space of the explanation
|
|
> p,
|
|
label {
|
|
display: none;
|
|
}
|
|
|
|
// FancyCaptcha things
|
|
.fancycaptcha-image-container img {
|
|
display: block;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
}
|
|
|
|
.mw-createacct-captcha-assisted {
|
|
font-size: 0.8em;
|
|
}
|
|
|
|
.confirmedit-captcha-reload {
|
|
position: relative;
|
|
}
|
|
}
|
|
}
|