我正在使用ZK,我想在我的.zul文件中使用ZK sclasses作为项目。 我看到你可以使用以下内容:
<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-tree-body以及我可以分配给它们的所有属性或如何搜索它们?
答案 0 :(得分:0)
当我需要覆盖一些CSS时,我总是使用浏览器开发人员工具搜索特定的CSS类。
因为您想要覆盖某些节点的CSS但不是全部,请尝试使用sclass到您自己的特定类。
示例:
<style>
.red {
color:red;
}
<style/>
<label sclass="@load(empty vm.property?''':'red')" />
如果是特殊情况,则不需要使用zk类。为了覆盖它们,你可以使用zk类。