Fixed issue when hovering over a created calendar event the cursor does not change to a finger

This commit is contained in:
johnnyq
2023-06-21 14:47:25 -04:00
parent b883b31194
commit 090ecf2e80
2 changed files with 13 additions and 0 deletions

View File

@@ -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

View File

@@ -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>