Skip to content

Commit

Permalink
🔨 Fix unreadable colored placeholder text (#368)
Browse files Browse the repository at this point in the history
  • Loading branch information
devmount authored Apr 18, 2024
1 parent 2ecc048 commit ee5ef96
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/elements/CalendarEvent.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit ee5ef96

Please sign in to comment.