I use the jquery theme roller in my project and I've noticed that it is creating a Chrome warning:
The page at https://mysite/ displayed insecure content from http://static.jquery.com/ui/themeroller/images/themeGallery/theme_90_dark_hive.png.
and worst, it makes the "green banner" (secure site) to become white again.
So I've researching and I've found the root of this problem is jquery.ui.themeswitcher.js
which has a variable with an non-SSL URL:
imgPrefix:"http://static.jquery.com/ui/themeroller/images/themeGallery/theme_90_",
If I change it to "https" the images are not loaded (in fact, it seems that this protocol is not enabled there). So the question is: is there any HTTPS enabled site where I can get the files?