在 PrimeFaces 选项卡组件中更改背景颜色时出现问题
我使用 Primefaces 2.1
我引用这样的css文件:
<style type="text/css">
@import url("resources/css/skin.css");
@import url("resources/css/style.css");
</style>
在 style.css 中我尝试更改背景颜色选项卡所在容器的:
.ui-tabs-nav{
background-color:yellow;
}
这不起作用。主选项卡容器的更改“有效”:
.ui-tabs{
background-color:yellow;
}
I use Primefaces 2.1
I reference the css files like this:
<style type="text/css">
@import url("resources/css/skin.css");
@import url("resources/css/style.css");
</style>
In style.css I try to change the background color of the container in which the tabs are:
.ui-tabs-nav{
background-color:yellow;
}
This doesn't work. The change of the main tab container "works":
.ui-tabs{
background-color:yellow;
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
关于主题的 pimefaces 页面:
http://primefaces.org/themes.html
向下滚动到“安装主题”,
您将使用jQuery 主题滚轮 http://jqueryui.com/themeroller/ 构建主题。这确实非常简单快捷。还有大量可用的预打包主题。
The pimefaces page on themes:
http://primefaces.org/themes.html
Scroll down to "Installing Themes"
You'll use the jQuery theme roller http://jqueryui.com/themeroller/ to build a theme. It's really easy and quick to do. There are also a large number of prepackaged themes available.