mediawiki-extensions-Confir.../FancyCaptcha/resources/ext.confirmEdit.fancyCaptcha.less
Amir Sarabadani e00901f634 FancyCaptcha: Switch to codex text input
It's only adding css and relying on classes in divs which is not
beautiful but it stops the field from being unstyled.

Bug: T355436
Change-Id: I103c95733ba60252db0e2b913eb6f3fc5323c122
2024-01-29 21:45:27 +01:00

46 lines
1,011 B
Plaintext

@import 'mediawiki.mixins.less';
/* Add margin between captcha and editform buttons */
.fancycaptcha-captcha-container {
margin-bottom: 8px;
}
/* Prevents the size of the container from changing, affecting page
layout, for normal CAPTCHA sizes. */
.fancycaptcha-image-container {
min-height: 95px;
position: relative; /* to position Reload link within this */
display: inline-block;
}
.fancycaptcha-reload {
.background-image( 'images/refresh.svg' );
background-position: left center;
background-repeat: no-repeat;
background-size: 12px 12px;
margin: 0 0 0 3px;
padding: 1px 2px 1px 12px;
color: #0645ad;
cursor: pointer;
cursor: hand;
}
.client-nojs .fancycaptcha-reload {
display: none;
}
.fancycaptcha-reload:hover {
text-decoration: underline;
}
.fancycaptcha-reload-loading {
/* @embed */
background: url( images/ajax-loader-10x10.gif ) no-repeat scroll left center transparent;
}
.fancycaptcha-image-container .fancycaptcha-reload {
position: absolute;
bottom: 0;
right: 4px;
}