mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2025-12-02 19:44:02 +08:00
Adding the Reports admin menu icon.
--HG-- branch : dev
This commit is contained in:
@@ -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.
|
||||||
|
|||||||
21
src/Orchard.Web/Core/Reports/Styles/Web.config
Normal file
21
src/Orchard.Web/Core/Reports/Styles/Web.config
Normal 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>
|
||||||
BIN
src/Orchard.Web/Core/Reports/Styles/images/menu.reports.png
Normal file
BIN
src/Orchard.Web/Core/Reports/Styles/images/menu.reports.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 219 B |
6
src/Orchard.Web/Core/Reports/Styles/menu.reports.css
Normal file
6
src/Orchard.Web/Core/Reports/Styles/menu.reports.css
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
.navicon-reports {
|
||||||
|
background-image:url(images/menu.reports.png) !important;
|
||||||
|
}
|
||||||
|
.navicon-reports:hover {
|
||||||
|
background-position:0 -30px !important;
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user