excid3 / simple_calendar

A wonderfully simple calendar gem for Rails
http://excid3.github.io/simple_calendar
MIT License
1.58k stars 268 forks source link

Feature request: Add a css selector to the day-date in month calendar #337

Closed pardeyke closed 8 months ago

pardeyke commented 8 months ago

Now:

<td class="day wday-4 past current-month has-events border">
14
</td>

Change to something like this:

<td class="day wday-4 past current-month has-events border">
<span class="day-date">14</span>
</td>
pardeyke commented 8 months ago

My bad, this is kind of nonsense. Just wrap it in a span in month_calendar(events: @events) do |date, event|