Skip to content

Commit

Permalink
move location of css
Browse files Browse the repository at this point in the history
  • Loading branch information
blueghostuk committed Nov 4, 2013
1 parent 38aad47 commit 9b5311d
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion TrainDelayed/App_Start/BundleConfig.cs
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public static void RegisterBundles(BundleCollection bundles)
bundles.Add(new StyleBundle("~/Content/css").Include(
// minification seems to fuck this up so include manually in _Layout.cshtml
//"~/Content/bootstrap/cerulean*",
"~/Content/bootstrap/typeahead-fix.css",
"~/Content/typeahead-fix.css",
"~/Content/bootstrap-datepicker.css",
"~/Content/style.css"));
}
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
6 changes: 3 additions & 3 deletions TrainDelayed/TrainDelayed.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -143,9 +143,9 @@
<Content Include="Content\bootstrap-theme.min.css" />
<Content Include="Content\bootstrap.css" />
<Content Include="Content\bootstrap.min.css" />
<Content Include="Content\bootstrap\cerulean.css" />
<Content Include="Content\bootstrap\cerulean.min.css" />
<Content Include="Content\bootstrap\typeahead-fix.css" />
<Content Include="Content\cerulean.css" />
<Content Include="Content\cerulean.min.css" />
<Content Include="Content\typeahead-fix.css" />
<Content Include="Content\style.css" />
<Content Include="fonts\glyphicons-halflings-regular.svg" />
<Content Include="Global.asax" />
Expand Down
2 changes: 1 addition & 1 deletion TrainDelayed/_Layout.cshtml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<style type="text/css">
@@import url(//fonts.googleapis.com/css?family=Telex);
</style>
<link rel="stylesheet" href="Content/bootstrap/cerulean.min.css" />
<link rel="stylesheet" href="Content/cerulean.min.css" />
@Styles.Render("~/Content/css")
@RenderSection("CustomCss", false)
@RenderSection("HeaderJs", false)
Expand Down

0 comments on commit 9b5311d

Please sign in to comment.