本文介绍了全天候网格中fullcalendar 2.1.0-beta1 / 2中的多行标题的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我刚刚将项目中的fullcalendar从1.5.2升级到2.1.0-beta2。从那时起,我的事件标题在第一行被切断(溢出隐藏),因为这里引入了一个新的CSS样式:
.fc-day-grid-event> .fc-content {/ *强制事件高一行* /
white-space:nowrap;
有什么理由让事件被强制为一条线?如果我不想要这个,可以覆盖这种风格还是会导致某些地方出现不可预知的行为?
我无法在文档中找到任何内容,也无法使用google。
解决方案 From
这是如何禁用单行标题
.fc-day-grid-事件> .fc-content {
white-space:normal;
}
I just upgraded fullcalendar in my project from 1.5.2 to 2.1.0-beta2. Since then my event titles are cut in the first line (overflow hidden) because of a new CSS style introduced here:
https://github.com/arshaw/fullcalendar/commit/afe97d112a63c64f5e46a6ebfed144ccbf7a0a28
.fc-day-grid-event > .fc-content { /* force events to be one-line tall */ white-space: nowrap;
Is there any reason why events are forced to be one line tall? If I don't want this, is it ok to just overwrite this style or will this lead to unpredictable behavior somewhere?I couldn't find anything in the documentation nor using google.
解决方案
From https://code.google.com/p/fullcalendar/issues/detail?id=1992
This is how to disable single line titles
.fc-day-grid-event > .fc-content {
white-space: normal;
}
这篇关于全天候网格中fullcalendar 2.1.0-beta1 / 2中的多行标题的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!