我的fullcalendar与我的bootstrap CSS文件相撞,所以我必须手动设置我的样式。 (我使用fullcalendar 2.7.3)
我想要红色边框(水平和垂直)。 我改变了:
.fc-row .fc-content-skeleton td,
.fc-row .fc-helper-skeleton td{...}
这创造了我的水平和垂直边框。但是垂直边界只显示在细胞的头部。 (屏幕截图)如何插入完整的垂直边框。
答案 0 :(得分:0)
fullcalendar.min.css将此代码用于0
属性:
border-color
因此,您可以复制此片段并设置所需的颜色:
.fc-unthemed .fc-content,
.fc-unthemed .fc-divider,
.fc-unthemed .fc-popover,
.fc-unthemed .fc-row,
.fc-unthemed tbody,
.fc-unthemed td,
.fc-unthemed th,
.fc-unthemed thead {
border-color: #ddd
}