CSS Bastelecke 1.0b1 Heute
Hintergrundfarbe des aktuellen Tages (“Heute”) ändern:
/* Aktueller Tag in der Wochenansicht */
#week-view calendar-header-container[relation="today"],
#week-view .calendar-event-column-linebox[relation="today"] {
background: #DFEAF4 !important; /* Original: #DFEAF4 */
}
/* Aktueller Tag in mehrwöchiger und Monatsansicht */
.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: #DFEAF4 !important; /* Original: #DFEAF4 */
}
#DFEAF4 durch die gewünschte Farbe ersetzen.
Aktuellen Tag in mehrwöchiger und Monatsansicht mit einem Rahmen versehen:
.calendar-month-day-box-current-month[relation="today"],
.calendar-month-day-box-day-off[relation="today"],
.calendar-month-day-box-other-month[relation="today"] {
border: 2px solid red !important;
}
Rahmentyp, -stärke und -farbe wie gewünscht anpassen.