You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I would love to be able to quickly identify the current day by applying a border around the current calendar day. And I would like to add a general faded opacity level on past days, they would still be clickable but they would be less prominent since they are in the past.
Any way to do this currently? If not would be a nice addition to the upcoming release : )
Thanks!
The text was updated successfully, but these errors were encountered:
There is no official support for this currently, but I agree that it'd be a nice feature to have! I'll look into incorporating this into a 2.x release.
You can probably reach what you want by injecting some custom CSS into your Nova app; the current calendar day already gets the class today so you can easily target it in your CSS using .nova-calendar .today to style the div that represents the day cell for today.
You could also make the current day stand out by adding a badge to the current calendar day using the customizeCalendarDay method in your CalendarDataProvider; just add a badge if $day->start->isToday().
I would love to be able to quickly identify the current day by applying a border around the current calendar day. And I would like to add a general faded opacity level on past days, they would still be clickable but they would be less prominent since they are in the past.
Any way to do this currently? If not would be a nice addition to the upcoming release : )
Thanks!
The text was updated successfully, but these errors were encountered: