The default font families for ZK/ZUL are:
Content: Verdana, Tahoma, Arial, serif
Titles: Verdana, Tahoma, Arial, Helvetica, sans-serif
Should the default/last family for content be sans-serif, given that all of the primary fonts given are sans-serif as well?
Viewing an application on a system without these Microsoft fonts (e.g. Linux without them installed) causes the pages to be rendered in serif and so they look quite different.
Fixed since 12/2.
The result is as follows.
Content: Verdana, Tahoma, Arial, Helvetica, sans-serif
Titles: Verdana, Tahoma, Arial, Helvetica, sans-serif
If you prefer more precise font-family, please specify the following code into the zk.xml.
<library-property>
<name>org.zkoss.zul.theme.fontFamilyC</name>
<value>Verdana, Tahoma, Arial, Helvetica, sans-serif</value>
</library-property>