I couldn't find a reference to this anywhere but I'm getting a warning that the jquery-ui-1.9.1.min.css file is missing when using views on the front-end, i.e. the file exists in the admin/css folder but not in the site/css folder. For now, I've copied the file to the site/css folder but wondering if that was the intent or if it would make more sense to have the file loaded from the admin folder instead of the site folder (helper.php code shown below)
Thanks!
Dave
//CSS
if ($app->isAdmin())
{
// Blue stork override
$styles = "fieldset td.key label{display: block;}fieldset input, fieldset textarea, fieldset select, fieldset img, fieldset button{float: none;}fieldset label, fieldset span.faux-label{float: none;display: inline;min-width: inherit;}";
$doc->addStyleDeclaration($styles);
self::addStyleSheet($doc, $baseAdmin, 'css' .DS. 'teammanager.css');
self::addStyleSheet($doc, $baseAdmin, 'css' .DS. 'toolbar.css');
$doc->addStyleSheet($componentUrlAdmin . '/css/jquery-ui-1.9.1.min.css');
}
else if ($app->isSite())
{
self::addStyleSheet($doc, $baseSite, 'css' .DS. 'teammanager.css');
self::addStyleSheet($doc, $baseSite, 'css' .DS. 'toolbar.css');
$doc->addStyleSheet($componentUrl . '/css/jquery-ui-1.9.1.min.css');
}