Weekend color number
tegarkurniawan opened this issue · 2 comments
tegarkurniawan commented
Weekend color number
richardtallent commented
Hi @tegarkurniawan,
While day-of-week classes could be added to make this easier, you can already do this with plain CSS. For example, this code will change the background color of all Saturdays and Sundays to grey (assuming Sunday is the first day of the week in the settings):
.monthly-week .m-d:nth-child(1),
.monthly-week .m-d:nth-child(7) {
background-color: #e0e0e0;
}
tegarkurniawan commented
thanks