Die Tage mit einem (oder mehreren) Terminen belegt sind, erhalten einen hellblauen Hintergrund, und die Tageszahl eine rote Schriftfarbe.
Der selektierte Tag erhält einen gelben Hintergrund und einen violetten Rahmen, auch wenn es sich um einen Tag mit Termin handelt.
Außerdem habe ich die Hintergrundfarbe der Leiste Monat / Jahr geändert.
Ich habe das recht ähnlich angepasst, habe aber auch noch die Tage hervorgehoben, die den laufenden Monat betreffen.
CSS
.minimonth-cal-box .minimonth-day[othermonth="true"] {
font-weight: bold;
border: 1px solid #B2B2B2 !important;
background-color: #C0C0C0 !important;
color: #000 !important;
}
.minimonth-cal-box .minimonth-day:not([othermonth="true"]) {
font-weight: bold;
border: 1px solid #B2B2B2 !important;
background-color: #91a9c0 !important;
color: #000 !important;
}
.minimonth-cal-box .minimonth-day[othermonth="true"][busy] {
border: 1px solid #B2B2B2 !important;
background-color: #ab5600 !important;
color: #000 !important;
}
.minimonth-cal-box .minimonth-day:not([othermonth="true"])[busy] {
font-weight: bold;
border: 1px solid #B2B2B2 !important;
background-color: #55aaff !important;
color: #000 !important;
}
.minimonth-cal-box .minimonth-day:not([othermonth="true"])[selected="true"] {
border: 1px solid #B2B2B2 !important;
background-color: #006800 !important;
color: #FFF !important;
}
Alles anzeigen
