FullCalendar dividing lines between days

前端 未结 3 1020
我寻月下人不归
我寻月下人不归 2021-01-27 11:02

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

相关标签:
3条回答
  • 2021-01-27 11:35

    to add dividing lines between days

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

    adjust pixels and color

    0 讨论(0)
  • 2021-01-27 11:39

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

    .fc-time-grid .fc-slats td {
        background: transparent;
    }
    
    0 讨论(0)
  • 2021-01-27 11:45

    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;
     }
    
    0 讨论(0)
提交回复
热议问题