We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
vue: "3.0.7" primevue: "3.3.5"
Hi,
I want to have different background colors for events displayed in FullCalendar.
FullCalendar
In config I try to use all options I've found in origin FullCalendar documentation
events: [ { ........... { "id": 2, "title": "Long Event", "start": "2019-01-07", "end": "2019-01-10", color: 'red', backgroundColor: 'red', borderColor: 'red', textColor: 'red', eventColor: 'red', }, { "id": 3, "title": "Repeating Event", "start": "2019-01-09T16:00:00", color: 'purple', backgroundColor: 'purple', borderColor: 'purple', textColor: 'purple', eventColor: 'purple', }, ...........
... but the background color remains the same as it is defined in (my case is saga-blue/theme.css)
saga-blue/theme.css
.fc .fc-view-harness .fc-event, .fc .fc-view-harness .fc-event-main { background: #0d89ec; border: 1px solid #0d89ec; color: #ffffff; }
What can I do to change the background color of the events?
The text was updated successfully, but these errors were encountered:
For anyone who faces this issue, I've found a temporary workaround. Hope there is a better way, though. You need to do like this for every color
<style> a[style*="background-color: grey"] > * { background: grey !important; } </style>
Sorry, something went wrong.
Closing as full calendar is deprecated in favor of the official component.
@cagataycivici Pretty sure this is still a problem. FullCalendar style inline like so
PrimeVue is styling over it further down the chain
No branches or pull requests
vue: "3.0.7"
primevue: "3.3.5"
Hi,
I want to have different background colors for events displayed in
FullCalendar
.In config I try to use all options I've found in origin FullCalendar documentation
... but the background color remains the same as it is defined in (my case is
saga-blue/theme.css
)What can I do to change the background color of the events?
The text was updated successfully, but these errors were encountered: