Just a few observations
Todays date is now highlighted if there are no events but not if there are events.
Different background colour:
.mod_events_td_todaynoevents {
font-weight: normal;
color: Black;
background-color: #FFA07A;
}
Same background as other days with events:
.mod_events_td_todaywithevents {
font-weight: normal;
color: Black;
background-color: #B0C4DE;
}
I have added a css override for this but it might be worth fixing in the next release?
Also the issue with the text not showing on hover seems to be due to the hover colour being to similar to the background colour
a.mod_events_daylink:hover {
color: Silver;
text-decoration: none;
}
I have changed mine to aliceblue which seems to show up OK agains the background.