While working on my Angular application, I encountered an issue with the Fullcalendar plugin. Specifically, I want to dynamically change the cell color when hovering over a time slot in AgendaWeek view (e.g. 7.30am-8.00am). I am striving for something like this:
https://i.sstatic.net/t8AqL.png
Initially, I attempted to alter the CSS using the following code snippet:
.fc-widget-content:hover {
background: #adf4fa;
}
However, this solution only changed the entire row's color instead of the specific cell.