TRAC - 更改 css 但在页面加载时被覆盖
有谁知道如何更改 css 文件,例如 trac 的 roadmap.css?我找出了文件的位置,但是当我修改它时,修改会在页面加载/刷新时被覆盖。
我的路线图 css 所在位置的示例 – x:\xx\xx\BitNami Trac Stackprojects\.egg-cache\Trac-0.12.1-py2.5.egg-tmp\trac\htdocs\css\roadmap.css
我会喜欢为里程碑图添加一些不同的类,例如
table.progress td.promote { background: #dcefdc}
Does anyone know how I can change a css files like roadmap.css for trac? I figured out where the file is but when I modify it, the modification is overwrote on page load/refresh.
Example of where my roadmap css is – x:\xx\xx\BitNami Trac Stack projects\.egg-cache\Trac-0.12.1-py2.5.egg-tmp\trac\htdocs\css\roadmap.css
I would like to add some different classes for the milestone graph like
table.progress td.promote { background: #dcefdc}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
无需修改现有样式表,只需将自定义样式添加到新样式表并将其链接到您的页面即可。您的自定义样式应该覆盖内置样式。有关详细信息,请参阅 TracInterfaceCustomization 和 CookBook/SiteStyleCss 为例。
Instead of modifying the existing stylesheets, add your custom styles to a new stylesheet and link it into your pages. Your custom styles should override the built-in styles. See TracInterfaceCustomization for more info and CookBook/SiteStyleCss for examples.