The title pretty much says it all. In the jquery-ui.css it defines styles like:
ui-widget-content {
border: 1px solid #aaaaaa/*{borderColorContent}*/;
background: #ffffff/*{bgColorContent}*/ url(images/ui-bg_flat_75_ffffff_40x100.png)/*
color: #222222/*{fcContent}*/;
}
This works fine in dev, but once deployed the url no longer resolves. The site is deployed under the default web site in IIS7. So in the browser console I can see that its looking for the image in
http:// (servername)/(appName)/Content/images/ui-bg_glass_75_e6e6e6_1x400.pnginstead of
http:// (serverName)/(appName)/content/themes/base/images...
Here is the bundle config:
bundles.Add(new StyleBundle("~/Content/css").Include(
"~/Content/themes/base/jquery-ui.css",
"~/Content/site.css"
));
How can I make these URLs resolve correctly?
<base>tag in your HTML?