CSS Bastelecke 1.3 Heute

Zurück zur Übersicht

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: #D3E3F3 !important; /* Original: #D3E3F3 */
}
/* 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: #D3E3F3 !important; /* Original: #D3E3F3 */
}

#D3E3F3 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.