It looks like the latest version of the jQuery UI module (v6.x-1.5) changed the location of the ui themes directory, so the ui.all.css file is not being added properly by this module. The jQuery UI themes directory is now located in the jQuery UI library folder at /sites/all/libraries/jquery.ui/themes/default.

I fixed the issue by changing line #58 in epsacrop.module from:

drupal_add_css(drupal_get_path('module', 'jquery_ui') .'/jquery.ui/themes/default/ui.all.css');

to:
drupal_add_css('sites/all/libraries/jquery.ui/themes/default/ui.all.css');

Hope that helps anyone who experiences the same problem.

Comments

yvmarques’s picture

Status: Active » Closed (duplicate)

Hi,

Tanks for reporting that, and it's fixed in the development branch.

More information here : http://drupal.org/node/974410#comment-5115466

Regards,

-- Yvan