How can I change an style of the Calendar addon?
I have already changed some styles of the application theme (using runo theme), and have tried to use the style names defined in calendar.css file to define new styles for calendar addon. For instance, I have tried to change the header background color of calendar addon:
on calendar.css:
/* Header bar */
.v-calendar {
background-color: #fff;
}
on my styles.css
.v-calendar {
background-color: #cccccc;
}
Sorry for the late reply, have you already resolved your issue? I’ll respond in case someone else encounters the same problem…
So you have created your own theme, imported one of the built-in themes and now you want to override some default add-on CSS values. In many cases, the CSS you specify should be more “specific” than the default CSS, like described
here :). So for example when overriding the described Calendar value, you could do something like