1

我在 jquery.weekcalendar.css 文件中找不到控制标题中文本大小的 CSS,即 2013 年 6 月 17 日 - 2013 年 6 月 21 日。

我必须将日历压缩到一个小空间中,因此我想更改此代码的字体大小(并删除 2013)。

感谢您提供任何有用的提示!

JSFiddle: http: //jsfiddle.net/5bBwW/(仍在寻找以 CDN 形式获取 jquery 周历 css/js 文件)。

这是我的日历初始化代码:

$('#week-calendar').weekCalendar({
                          firstDayOfWeek: 1,
                          daysToShow: 5,
                          useShortDayNames: true,
                          showHeader: true,
                          timeslotsPerHour: 4,
                          scrollToHourMillis: 0,
                          businessHours:{start: 8, end: 18, limitDisplay: false },
                          height: function(data){
                            return $(window).height() - $('h1').outerHeight(true);
                          },
                          data: eventData,
                          eventRender : function( calEvent, $event ) {
                                if( calEvent.end.getTime() < new Date().getTime() ) {
                                    $event.css( "backgroundColor", "#aaa" );
                                    $event.css( "font-size", "1" );
                                    $event.find( ".time" ).css( {"backgroundColor": "#999", "border":"1px solid #888" } );
                                }
                            },
                          eventClick : function( calEvent, $event ) {
                              window.location.href = 'lobby?meetingId='+calEvent.id;
                            },
                        });
4

1 回答 1

0

找到了:

.wc-title

它在 jquery-weekcalendar.css 中,并且没有设置字体大小。

于 2013-06-20T18:57:52.863 回答