Make (extra) sure question text is black
This commit is contained in:
parent
70c45d24f7
commit
1c866d4908
|
@ -13,7 +13,7 @@ window.onload = function () {
|
||||||
getJSON(api_url + "?action=new", function (status, json) {
|
getJSON(api_url + "?action=new", function (status, json) {
|
||||||
/* Add custom styles */
|
/* Add custom styles */
|
||||||
var styles = document.createElement('style');
|
var styles = document.createElement('style');
|
||||||
styles.innerHTML = ".captcheck_box {font-family: Ubuntu, Arial, sans-serif; color: black; border: 1px solid #e0e0e0; border-radius: 3px; display: inline-block; padding: 3px; margin: 5px 2px 5px 1px; background-color: #f5f5f5;} .captcheck_label_message {color: black;} .captcheck_answer_label > input {visibility: hidden; position: absolute;} .captcheck_answer_label > input + img {cursor: pointer; border: 2px solid transparent; border-radius: 3px; min-width: 32px; width: 18%; max-width: 64px;} .captcheck_answer_label > input:checked + img {cursor: pointer; border: 2px solid #424242; border-radius: 3px;} .captcheck_error_message {color: red;}";
|
styles.innerHTML = ".captcheck_box {font-family: Ubuntu, Arial, sans-serif; color: black; border: 1px solid #e0e0e0; border-radius: 3px; display: inline-block; padding: 3px; margin: 5px 2px 5px 1px; background-color: #f5f5f5;} .captcheck_label_message, .captcheck_label_message b {color: black; font-family: Ubuntu, Arial, sans-serif;} .captcheck_answer_label > input {visibility: hidden; position: absolute;} .captcheck_answer_label > input + img {cursor: pointer; border: 2px solid transparent; border-radius: 3px; min-width: 32px; width: 18%; max-width: 64px;} .captcheck_answer_label > input:checked + img {cursor: pointer; border: 2px solid #424242; border-radius: 3px;} .captcheck_error_message {color: red;}";
|
||||||
document.body.appendChild(styles);
|
document.body.appendChild(styles);
|
||||||
|
|
||||||
/* Get captcha container div */
|
/* Get captcha container div */
|
||||||
|
|
Loading…
Reference in New Issue