mirror of https://github.com/itflow-org/itflow
Fixed issue when hovering over a created calendar event the cursor does not change to a finger
This commit is contained in:
parent
b883b31194
commit
090ecf2e80
|
|
@ -9,6 +9,13 @@ if (isset($_GET['calendar_id'])) {
|
|||
?>
|
||||
<link href='plugins/fullcalendar/main.min.css' rel='stylesheet' />
|
||||
|
||||
<!-- So that when hovering over a created event it turns into a hand instead of cursor -->
|
||||
<style>
|
||||
.fc-event {
|
||||
cursor: pointer;
|
||||
}
|
||||
</style>
|
||||
|
||||
<div id='calendar'></div>
|
||||
|
||||
<?php
|
||||
|
|
|
|||
|
|
@ -10,6 +10,12 @@ if (isset($_GET['calendar_id'])) {
|
|||
|
||||
<link href='plugins/fullcalendar/main.min.css' rel='stylesheet' />
|
||||
|
||||
<style>
|
||||
.fc-event {
|
||||
cursor: pointer;
|
||||
}
|
||||
</style>
|
||||
|
||||
<div class="card">
|
||||
<div id='calendar'></div>
|
||||
</div>
|
||||
|
|
|
|||
Loading…
Reference in New Issue