From 3a76dbfc99548279541f8e4fbf1ca1660ce837d8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20M=C3=BCller?= Date: Thu, 18 Apr 2024 11:33:32 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A8=20Fix=20unreadable=20colored=20pla?= =?UTF-8?q?ceholder=20text?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/src/elements/CalendarEvent.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/elements/CalendarEvent.vue b/frontend/src/elements/CalendarEvent.vue index abc130b65..589b84377 100644 --- a/frontend/src/elements/CalendarEvent.vue +++ b/frontend/src/elements/CalendarEvent.vue @@ -30,7 +30,7 @@ :style="{ borderColor: eventColor(eventData, placeholder).border, backgroundColor: monthView || placeholder ? eventColor(eventData, placeholder).background : eventData.calendar_color, - color: !monthView ? getAccessibleColor(eventData.calendar_color) : null, + color: !monthView && !placeholder ? getAccessibleColor(eventData.calendar_color) : null, }" @click="emit('eventSelected', day)" @mouseenter="element => showDetails ? popup=showEventPopup(element, event, popupPosition) : null"