问题
I'm currently using the Calendar Plugin (fullcalendar). I just couldn't find in its CSS file where I can customize the width/thickness of the eventBorderColor. Thanks!
回答1:
Override the class .fc-event-inner:
.fc-event-inner {
border: 5px solid red;
}
Or you can use the 'className' option on your event objects and create that class. Be sure you add the !important property.
{
title : 'event01',
start : '2014-08-09',
className: 'moreBorder'
}
.moreBorder{
border: 5px solid red !important;
}
来源:https://stackoverflow.com/questions/25130026/how-to-change-the-eventbordercolor-thickness-in-fullcalendar