Hello everyone!
I would like to color in green the name of application checked in Wizard pane.
It s a specific request from my boss^^
What files must be modified?
I have some idea but it's not working :
In ZTIConfigFile.vbs, line 701 :
BuildHTML_Element = "<div onmouseover=""javascript:this.className = 'DynamicListBoxRow-over';"" onmouseout=""javascript:this.className = 'DynamicListBoxRow';"" >" BuildHTML_Element = BuildHTML_Element & "<input name=" & sEnabledElements & " type=" & sButtonStyle & " id='" & sFolderGuid & "-" & sGuid &"' value='" & sGuid & "' " & sIsChecked & "/><img src='" & sItemIcon & "' />" BuildHTML_Element = BuildHTML_Element & "<label for='" & sFolderGuid & "-" & sGuid & "' class=TreeItem>" & sName & "</label> "& sComments & "</div>"
and in wizard.css i m trying to add some class like this :
input[type=checkbox] + label {color: #ccc;font-style: italic;}input[type=checkbox]:checked+ label {color: #f00;font-style: normal;}
Thank for your help.
Regards,