The form item label will be displayed on two lines if too large.
You can also override the _getLabelWidth() and/or the _getItemHeight() function of the SearchTool to ajust the form according to yours elements :
org.ametys.cms.tool.search.SearchTool.prototype._getLabelWidth = function ()
{
return 180;
}
org.ametys.cms.tool.search.SearchTool.prototype._getItemHeight = function ()
{
return 28;
}
The form item label will be displayed on two lines if too large.
You can also override the _getLabelWidth() and/or the _getItemHeight() function of the SearchTool to ajust the form according to yours elements :