简体   繁体   中英

How to change the eventBorderColor thickness in fullcalendar?

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!

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;
}

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM