无法恢复星期几的格式

时间:2013-09-21 08:56:33

标签: fullcalendar

CSS example http://i44.tinypic.com/24wgch5.gif 从v1.4.11升级到v1.6.4后,附加的图像显示我正在尝试创建的日历的星期几视图。顶部(v1.4.11)添加了颜色和圆形边缘,但即使在将必要代码复制并粘贴到新文件之后,我也无法使第二个版本执行相同操作。如果有人可以告诉我哪个CSS组件应该受到影响,我可以轻松地将行背景颜色应用于行,将半径应用于外边缘。提前感谢您的任何帮助。

2 个答案:

答案 0 :(得分:0)

通过反复试验,找到了解决方案:

/*left top cell in personal calendar*/
.fc .fc-grid th.fc-leftmost {
background-position: 0 0;
-webkit-border-top-left-radius: 7px;
-moz-border-top-left-radius: 7px;
border-top-left-radius: 7px;
  }

/*right top cell in personal calendar*/
.fc .fc-grid th.fc-sat {
background-position: 100% 0;
-webkit-border-top-right-radius: 7px;
-moz-border-top-right-radius: 7px;
border-top-right-radius: 7px;
}

/*first row (days of week) for personal calendar*/
.fc-content .fc-state-default {
border-style: solid;
border-color: #D2D2D2; /* inner border color */
background: green;
color: #fff;
}

答案 1 :(得分:0)

更好:

.fc .fc-grid th 
{
    background: green;
}