Adding the Reports admin menu icon.

--HG--
branch : dev
This commit is contained in:
Nathan Heskew
2011-02-23 19:31:17 -08:00
parent 88b9fc9a99
commit 2a4b7f1cd2
4 changed files with 32 additions and 0 deletions

View File

@@ -256,6 +256,8 @@
<Content Include="Navigation\Styles\images\menu.navigation.png" /> <Content Include="Navigation\Styles\images\menu.navigation.png" />
<Content Include="Navigation\Styles\menu.navigation.css" /> <Content Include="Navigation\Styles\menu.navigation.css" />
<Content Include="Reports\Module.txt" /> <Content Include="Reports\Module.txt" />
<Content Include="Reports\Styles\images\menu.reports.png" />
<Content Include="Reports\Styles\menu.reports.css" />
<Content Include="Reports\Views\Admin\Display.cshtml" /> <Content Include="Reports\Views\Admin\Display.cshtml" />
<Content Include="Reports\Views\Admin\Index.cshtml" /> <Content Include="Reports\Views\Admin\Index.cshtml" />
<Content Include="Routable\Module.txt" /> <Content Include="Routable\Module.txt" />
@@ -400,6 +402,9 @@
<SubType>Designer</SubType> <SubType>Designer</SubType>
</Content> </Content>
</ItemGroup> </ItemGroup>
<ItemGroup>
<Content Include="Reports\Styles\Web.config" />
</ItemGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" /> <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
<Import Project="$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v10.0\WebApplications\Microsoft.WebApplication.targets" /> <Import Project="$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v10.0\WebApplications\Microsoft.WebApplication.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.

View File

@@ -0,0 +1,21 @@
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<appSettings>
<add key="webpages:Enabled" value="false" />
</appSettings>
<system.web>
<httpHandlers>
<!-- iis6 - for any request in this location, return via managed static file handler -->
<add path="*" verb="*" type="System.Web.StaticFileHandler" />
</httpHandlers>
</system.web>
<system.webServer>
<handlers accessPolicy="Script,Read">
<!--
iis7 - for any request to a file exists on disk, return it via native http module.
accessPolicy 'Script' is to allow for a managed 404 page.
-->
<add name="StaticFile" path="*" verb="*" modules="StaticFileModule" preCondition="integratedMode" resourceType="File" requireAccess="Read" />
</handlers>
</system.webServer>
</configuration>

Binary file not shown.

After

Width:  |  Height:  |  Size: 219 B

View File

@@ -0,0 +1,6 @@
.navicon-reports {
background-image:url(images/menu.reports.png) !important;
}
.navicon-reports:hover {
background-position:0 -30px !important;
}