如何在 fullcalendar 中更改 eventBorderColor 的厚度?

Kel*_*las 3 javascript css fullcalendar

我目前正在使用日历插件 (fullcalendar)。我只是在它的 CSS 文件中找不到可以自定义 eventBorderColor 的宽度/厚度的地方。谢谢!

Mar*_*pez 5

覆盖类 .fc-event-inner:

.fc-event-inner {
  border: 5px solid red;
}
Run Code Online (Sandbox Code Playgroud)

或者您可以在事件对象上使用“className”选项并创建该类。请务必添加 !important 属性。

{
   title  : 'event01',
   start  : '2014-08-09',
   className: 'moreBorder'
}


.moreBorder{
  border: 5px solid red !important;
}
Run Code Online (Sandbox Code Playgroud)