如何在全日历中使用边框间距

发布于 2024-10-11 09:12:29 字数 233 浏览 2 评论 0原文

我正在尝试设计 fullcalendar jquery 插件的样式,并对其进行大部分设置,但有一个问题。我希望单元格之间有间距(即,这样可以看到表格后面的背景),我可以通过覆盖 css border-spacing 属性来做到这一点,但是当我这样做时,fullcalendar 的宽度计算会被抛出,并且我的远右栏(月视图中的“星期六”)缩小。有什么方法可以告诉 fullcalendar 我正在使用间距,或者有其他方法可以计算出来吗? 谢谢, 亚历克斯

I'm trying to style the fullcalendar jquery plugin, and have it mostly set, with one problem. I want to have spacing between the cells (ie. so can see background behind table), which I can do by overriding the css border-spacing property, however when I do that, the width calculations for fullcalendar get thrown off, and my far right column ('Saturday' in month view) gets shrunk. Is there any way to tell fullcalendar that I'm using spacing, or some other way to have that calculated through?
Thanks,
Alex

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

书信已泛黄 2024-10-18 09:12:29

您可以将其添加到问题跟踪器中吗?
http://code.google.com/p/fullcalendar/issues/list

谢谢!

can you add this to the issue tracker?
http://code.google.com/p/fullcalendar/issues/list

thanks!

残疾 2024-10-18 09:12:29

我遇到了和你面临同样的问题。与挖掘 .js 相反,我只是使用 css 通过使用 addclass 添加宽度到 fc-sat 列来“修复”此问题,从而匹配所需 #calendar 宽度的其他列的宽度。

$(function () {
    $('.fc-sat').addClass('adjustit');
});

在我的 css 中使用这些类

<style>
#calendar{width:780px;}
.adjustit{width:103px !important;}
</style>

希望这会有所帮助。

I was having the same issue that you are facing. As opposed to digging through the .js i just 'fixed' this with css by adding width to the fc-sat column with addclass, matching the width of the other columns of the desired #calendar width.

$(function () {
    $('.fc-sat').addClass('adjustit');
});

With these classes in my css

<style>
#calendar{width:780px;}
.adjustit{width:103px !important;}
</style>

Hope this helps.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文