我想向wizard-toc添加一个“已访问”类css,所以我在wizard.xbl中修改了这个表达式
<xh:li class="{{
'has-errors' [$top-level-section-has-any-errors],
'invalid' [$top-level-section-has-visible-errors],
'incomplete' [$top-level-section-incomplete],
'not-started'[$top-level-section-not-started],
'disabled' [$top-level-section-disabled],
'active' [$top-level-section-active],
'visited' [$top-level-section-visited],
}}">
在wizard.css中
.orbeon .xbl-fr-wizard .fr-wizard-toc .nav .visited> span > a {
color: #ffffff;
background-color: #ffaa48;
}
那么我在哪里可以在属性文件中声明目录/xbl/wizard以及我将使用哪个属性?