How to change the eventBorderColor thickness in fullcalendar?

六眼飞鱼酱① 提交于 2019-12-24 10:47:09

问题


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

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!