I try to add css to PrimeFaces and overwrite the defaults components font size.
My default.css:
.body {
font-size: 10%;
}
.ui-widget,.ui-widget-header,.ui-widget-content,.ui-widget-header .ui-widget-header,.ui-widget-content .ui-widget-content,.ui-widget input,.ui-widget select,.ui-widget textarea,.ui-widget button
{
font-size: 10%;
}
.button{
font-size: 10%;
}
.ui-widget.button{
font-size: 10%;
}
On the xml body:
<h:outputStylesheet library="css" name="default.css" />
and for example I tried to add new css to the button:
<p:commandButton styleClass="button" id="add" value="Add" ajax="false"/>
What am I doing incorrectly, do not see any effects.