2024-01-27 21:57:10 +00:00
|
|
|
/* Add margin between captcha and editform buttons */
|
|
|
|
.fancycaptcha-captcha-container {
|
|
|
|
margin-bottom: 8px;
|
|
|
|
}
|
|
|
|
|
2013-01-17 02:00:09 +00:00
|
|
|
/* Prevents the size of the container from changing, affecting page
|
|
|
|
layout, for normal CAPTCHA sizes. */
|
|
|
|
.fancycaptcha-image-container {
|
|
|
|
min-height: 95px;
|
2013-05-03 20:04:35 +00:00
|
|
|
position: relative; /* to position Reload link within this */
|
|
|
|
display: inline-block;
|
2013-01-17 02:00:09 +00:00
|
|
|
}
|
|
|
|
|
2024-04-23 22:15:48 +00:00
|
|
|
.fancycaptcha-image {
|
|
|
|
max-width: 100%;
|
|
|
|
}
|
|
|
|
|
2013-04-26 23:34:30 +00:00
|
|
|
.fancycaptcha-reload {
|
2024-06-01 05:34:34 +00:00
|
|
|
background-image: url( images/refresh.svg );
|
2019-01-11 04:20:27 +00:00
|
|
|
background-position: left center;
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-size: 12px 12px;
|
2013-04-26 23:34:30 +00:00
|
|
|
margin: 0 0 0 3px;
|
|
|
|
padding: 1px 2px 1px 12px;
|
2017-01-18 12:52:44 +00:00
|
|
|
color: #0645ad;
|
2013-01-17 02:00:09 +00:00
|
|
|
cursor: pointer;
|
|
|
|
cursor: hand;
|
|
|
|
}
|
|
|
|
|
2017-01-18 12:52:44 +00:00
|
|
|
.client-nojs .fancycaptcha-reload {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2013-04-26 23:34:30 +00:00
|
|
|
.fancycaptcha-reload:hover {
|
2013-01-17 02:00:09 +00:00
|
|
|
text-decoration: underline;
|
2013-04-26 23:34:30 +00:00
|
|
|
}
|
2017-01-18 12:52:44 +00:00
|
|
|
|
2013-04-26 23:34:30 +00:00
|
|
|
.fancycaptcha-reload-loading {
|
|
|
|
/* @embed */
|
2017-01-18 12:52:44 +00:00
|
|
|
background: url( images/ajax-loader-10x10.gif ) no-repeat scroll left center transparent;
|
2013-01-17 02:00:09 +00:00
|
|
|
}
|
2013-05-03 20:04:35 +00:00
|
|
|
|
|
|
|
.fancycaptcha-image-container .fancycaptcha-reload {
|
|
|
|
position: absolute;
|
|
|
|
bottom: 0;
|
|
|
|
right: 4px;
|
|
|
|
}
|