JQuery ThemeRoller自定义主题进一步定制
我用 ThemeRoller 创建了一个自定义主题。我现在想自定义复选框,使其活动状态的颜色与在 ThemeRoller 中选择的“可点击:活动状态”不同。尽管搜索了自定义主题提供的各种 css 文件,但我一生都无法弄清楚如何做到这一点。我什至找不到自定义颜色的存储位置。请哪位好心人告诉我该怎么做?谢谢!!
I have created a custom theme with ThemeRoller. I would now like to customise the checkboxes so that their active state is a different colour to the 'clickable: active state' which was chosen in the ThemeRoller. Despite trawling the various css files provided by the custom theme, I cannot for the life of me work out how to do this. I can't even find where the custom colours are stored. Please can some kind soul tell me how to do this? Thanks!!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
可以在以下位置找到:
或
当您使用 ThemeRoller 创建自定义主题时,它会生成图像 development-bundle/themes/custom-theme/images/ui-bg_glass_65_ffffff_1x400.png,其中 ffffff替换为您的自定义“可点击:活动状态”颜色。您可能遇到的问题是,由于该图像是动态生成的(以提供纹理),因此您必须更改背景颜色,并且还可以:
根据该网站,Checkbox 将作为 jQuery UI 1.9 的一部分实现。 http://jqueryui.com/developmentThemeRoller 可能使用最新的稳定版本( jQuery UI 1.8.5)。This is found in:
or
When you use ThemeRoller to create your custom theme, it generates the image development-bundle/themes/custom-theme/images/ui-bg_glass_65_ffffff_1x400.png, where ffffff is replaced with your custom "Clickable: active state" color. The problem you may encounter is that since this image is generated on the fly (to provide the texture), you must change the background color and also either:
According to the website, Checkbox will be implemented as part of jQuery UI 1.9. http://jqueryui.com/developmentThemeRoller likely uses the most recent stable version (jQuery UI 1.8.5).