CSS Bastelecke 1.3 Wochenende
Hintergrundfarbe für Tage ändern, die nicht als Werktag festgelegt wurden (Wochenende):
/* Hintergrundfarbe für Nicht-Werktage in der Wochenansicht */
#week-view calendar-header-container[weekend="true"],
#week-view .calendar-event-column-linebox[weekend="true"] {
background: #F7FFE3 !important; /* Original: #F7FFE3 */
}
/* Hintergrundfarbe für Nicht-Werktage in mehrwöchiger und Monatsansicht */
.calendar-month-day-box-day-off,
.calendar-month-day-box-day-off .calendar-month-day-box-date-label {
background: #F7FFE3 !important; /* Original: #F7FFE3 */
}
.calendar-month-day-box-day-off .calendar-month-day-box-date-label {
background-color: #EAF7CA !important; /* Original: #EAF7CA */
}
/* Hintergrundfarbe für "Heute" wiederherstellen */
#week-view calendar-header-container[relation="today"],
#week-view .calendar-event-column-linebox[relation="today"] {
background: #D3E3F3 !important;
}
.calendar-month-day-box-current-month[relation="today"],
.calendar-month-day-box-day-off[relation="today"],
.calendar-month-day-box-other-month[relation="today"],
.calendar-month-day-box-date-label[relation="today"] {
background: #D3E3F3 !important;
}
/* Hintergrundfarbe für ausgewählten Tag wiederherstellen */
#week-view calendar-header-container[selected="true"],
#week-view .calendar-event-column-linebox[selected="true"] {
background: #FFFBD8 !important;
}
.calendar-month-day-box-current-month[selected="true"],
.calendar-month-day-box-day-off[selected="true"],
.calendar-month-day-box-other-month[selected="true"] {
background: #FFFBD8 !important;
}
.calendar-month-day-box-date-label[selected="true"] {
background-color: #F2EDB2 !important;
}
#F7FFE3, #F7FFE3 und #EAF7CA durch die gewünschte Farbe ersetzen.