更改 CFGRID 上的样式

发布于 2024-10-05 06:44:14 字数 106 浏览 2 评论 0原文

嘿 - cfgrid(和其他 cf ui)东西使用 EXT JS 库...有人知道如何更改 CF 网格表标题颜色吗?和/或边框颜色? - 在 HTML 网格中,而不是 Flash 或小程序...谢谢

hey - the cfgrid (and other cf ui) stuff makes use of the EXT JS lib... does eny one know how to change the CF grid table header colors? and or the border colors? - In the HTML grid NOT the flash or applet... thx

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

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

发布评论

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

评论(3

探春 2024-10-12 06:44:14

自定义外观和感觉:为 ColdFusion 8 Ajax UI 组件设置外观

http://www.rakshith.net/博客/?p=31

Customizing Look and Feel : Skin your ColdFusion 8 Ajax UI Components

http://www.rakshith.net/blog/?p=31

农村范ル 2024-10-12 06:44:14

这很简单。您可以按如下方式破解 CF 现有样式表。

.x-grid-hd-text {
字体系列:Calibri;
字体大小:15px;
字体粗细:粗体;
}

.x-grid-row div{
行高:16px;
字体系列:Calibri;
字体大小:13px;
}

.x-grid-col {
字体系列:Calibri;
字体大小:13px;
右边框:1px 实线#cccccc;

http://www.ppshein.net/ index.cfm/2010/9/16/change-font-in-cfgrid

It's simple. You can hack CF existing stylesheet as follow.

.x-grid-hd-text {
font-family:Calibri;
font-size:15px;
font-weight:bold;
}

.x-grid-row div{
line-height:16px;
font-family:Calibri;
font-size:13px;
}

.x-grid-col {
font-family:Calibri;
font-size:13px;
border-right: 1px solid #cccccc;
}

http://www.ppshein.net/index.cfm/2010/9/16/change-font-in-cfgrid

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