I'm trying to customize the fullcalendar button, but I can not. I'm using Bootstrap. The CSS code for fullcalendar, I placed after the Bootstrap CSS and before the tag. See the code below:
CSS
.fc-right button{
text-transform: uppercase;
border-radius: 2px;
font-size: 13px;
font-weight: 600;
transition: box-shadow linear 0.4s;
background-color: #2196F3;
border-color: #2196F3;
margin-top: 10px;
}
HTML
<div class="col-xl-4 col-lg-4 grid-item">
<div class="card" style="background-color: #F9EAAF">
<div class="panel panel-default">
<div class="panel-heading bg-default txt-white">
<i class="fa fa-calendar fa-lg"></i> Calendário de Eventos
</div>
<div class="panel-body">
<div id='calendario'></div>
</div>
<div class="panel-footer" align="center">
<button class="btn btn-default">Ver todos os eventos</button>
</div>
</div>
</div>
</div>
JQuery
$(document).ready(function() {
$('#calendario').fullCalendar({
height: 250,
contentHeight: 273,
editable: false,
eventLimit: false,
events: 'eventos.php',
eventColor: '#dd6777',
eventClick: function(event, jsEvent, view) {
$('#modalTitle').html("<i class=\"fa fa-hand-o-right\" aria-hidden=\"true\"></i> " + event.title);
$('#modalBody').html(event.description);
$('#eventUrl').attr('href',event.url);
$('#fullCalModal').modal();
}
});
});
It looks like this:
AndwhenImovethemouse:
How do I get it to take the formatting I put up?