minor style updates and fixes in safe-output

This commit is contained in:
fbsanchez 2019-05-20 18:16:21 +02:00
parent 5e9b2479eb
commit 77fc1abe89
2 changed files with 5 additions and 3 deletions

View File

@ -167,6 +167,7 @@ if (get_parameter('get_notification', 0)) {
$msg = messages_get_message($msg_id);
$msg['mensaje'] = io_safe_output($msg['mensaje']);
$msg['subject'] = io_safe_output($msg['subject']);
echo json_encode($msg);
}

View File

@ -19,7 +19,8 @@ button.submit-cancel:hover {
}
input[type="submit"].submit-next,
button.submit-next {
button.submit-next,
input[type="button"].submit-next {
color: #82b92e !important;
border: 1px solid #82b92e !important;
background: #fff !important;
@ -29,11 +30,11 @@ button.submit-next {
cursor: pointer !important;
text-align: center !important;
height: 30px !important;
width: 90px !important;
}
input[type="submit"].submit-next:hover,
button.submit-next:hover {
button.submit-next:hover,
input[type="button"].submit-next:hover {
color: #fff !important;
background: #82b92e !important;
}