FullCalendar dividing lines between days

橙三吉。 提交于 2019-12-11 19:14:32

问题


I am using the jquery fullcalendar and it's working great however in the agendaweek view there are no dividing lines between the days. I have reviewed the fullcalendar site and even tried to find what css handled displaying the dividing lines with no luck. How do I get the day dividing lines to show?

Thanks


回答1:


to add dividing lines between days

.fc-border-separate td {
    border-width: 1px 0 0 1px;
    border-color: red;
}

adjust pixels and color




回答2:


I had the exact same issue using styling from http://jqueryui.com/themeroller/. If using themerolled calendar, try adding opacity to css class fc-agenda-slots td.

.fc-agenda-slots td {
    border-width: 1px 0 0;
    background: none;
    opacity:0.15;
 }



回答3:


I had the same issue in angular js (bower install), solved it with:

.fc-time-grid .fc-slats td {
    background: transparent;
}


来源:https://stackoverflow.com/questions/22465392/fullcalendar-dividing-lines-between-days

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