我正在使用ZK,我想对.zul文件中的项使用ZK sclass。我看到你可以使用这样的东西:
<style>
div.z-tree {
background: none !important;
background-image: none !important;
border: none !important;
}
div.z-tree-body {
background: none !important;
}
tr.z-treerow-seld, tr.z-treerow-over {
background: #00533f !important;
}
div.z-treecell-cnt {
color: #5555ff;
}
.test-class div.z-treecell-cnt {
color: #ff5555 !important;
}
</style>
我在哪里可以找到所有这些样式,比如我可以使用的z树体和我可以分配给它们的所有属性,或者如何搜索它们?
当我需要覆盖某些CSS时,我总是使用浏览器开发工具搜索特定的CSS类。
因为你想覆盖某些节点的CSS,但不是全部,所以试着对你自己的特定类使用sclass。
示例:
<style>
.red {
color:red;
}
<style/>
<label sclass="@load(empty vm.property?''':'red')" />
如果是针对特殊情况,则不需要使用zk类。为了覆盖所有这些,您可以使用zk类。