25
| <![CDATA[<style>
.logo {
width: 150px;
border: 10px solid #ffffff;
box-shadow: 5px 5px 20px #0000009c;
}
.attach-trash, .attach-drop {
cursor: pointer;
font-size: 1.3em;
color: #888;
margin-top: 10px;
}
input[type="checkbox"]:checked + .attach-trash, .attach-drop {
color: #FF0000;
}
.icon-file {
font-size: 32px;
color: var(--gray);
vertical-align: sub;
}
@media (max-width: 991px) {
.filter-protocol > div > div {
margin: 5px;
}
}
.list-group-item-separate {
border-bottom: solid #dfdfdf 1px;
padding-top: 10px;
padding-bottom: 5px;
}
.btn-accept {
border: none;
}
p.instruction {
font-size: 1.3em;
margin: 30px 20px;
}
section.instruction {
margin-bottom: 100px;
}
.instruction-indice {
margin: 40px 0 60px 20px;
list-style: none;
}
.instruction-indice li {
margin-bottom: 5px;
font-size: 1.2rem;
}
.instruction-indice li ul {
list-style: none;
}
.tutorial i {
font-size: 2rem;
margin-bottom: 15px;
}
</style>]]>
|
231
| <![CDATA[<script>
// display a modal (small modal)
$(document).on('click', '#smallButton', function(event) {
event.preventDefault();
let href = $(this).attr('data-attr');
$.ajax({
url: href,
beforeSend: function() {
$('#loader').show();
},
// return the result
success: function(result) {
$('#smallModal').modal("show");
$('#smallBody').html(result).show();
},
complete: function() {
$('#loader').hide();
},
error: function(jqXHR, testStatus, error) {
console.log(error);
alert("Page " + href + " cannot open. Error:" + error);
$('#loader').hide();
},
timeout: 8000
})
});
</script>]]>
|
263
| <![CDATA[<script>
$(document).ready(function($){
var SPMaskBehavior = function (val) {
return val.replace(/\D/g, '').length === 11 ? '(00) 00000-0000' : '(00) 0000-00009';
},
spOptions = {
onKeyPress: function(val, e, field, options) {
field.mask(SPMaskBehavior.apply({}, arguments), options);
}
};
$('.cep').mask('00000-000');
$('.cpf').mask('000.000.000-00', {reverse: true});
$('.sp_celphones').mask(SPMaskBehavior, spOptions);
$('.money').mask("#.##0,00", {reverse: true});
$(function () {
$('[data-toggle="tooltip"]').tooltip()
})
});
</script>]]>
|