Calendar Widget 9.24.1

0
I want to change the background/Text color of the calendar. I tried will all the possible CSS but could not able to change anything. Is it possible to change the UI for calendar also Is there a way in Mendix where we can check what are the classes and CSS property has been added to the particular widget.
asked
1 answers
0

Hello,
You can add a custom class in the Appearance tab, you can set it to "StyleCalendar," for example.
then you can style whatever you want, like the below, in your style file.

.StyleCalendar {

background-color: rgb(104, 14, 165) !important;

color: #e414a5 !important;

}

.widget-calendar .rbc-off-range-bg {

background-color: rgb(104, 14, 165) !important;

}

 

answered