mirror of
https://github.com/itflow-org/itflow
synced 2026-03-03 12:24:51 +00:00
Fixed issue when hovering over a created calendar event the cursor does not change to a finger
This commit is contained in:
@@ -9,6 +9,13 @@ if (isset($_GET['calendar_id'])) {
|
|||||||
?>
|
?>
|
||||||
<link href='plugins/fullcalendar/main.min.css' rel='stylesheet' />
|
<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>
|
<div id='calendar'></div>
|
||||||
|
|
||||||
<?php
|
<?php
|
||||||
|
|||||||
@@ -10,6 +10,12 @@ if (isset($_GET['calendar_id'])) {
|
|||||||
|
|
||||||
<link href='plugins/fullcalendar/main.min.css' rel='stylesheet' />
|
<link href='plugins/fullcalendar/main.min.css' rel='stylesheet' />
|
||||||
|
|
||||||
|
<style>
|
||||||
|
.fc-event {
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
|
||||||
<div class="card">
|
<div class="card">
|
||||||
<div id='calendar'></div>
|
<div id='calendar'></div>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
Reference in New Issue
Block a user