mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2025-04-05 21:01:35 +08:00
added the missing minification files (#8553)
Co-authored-by: elena.lampugnani <elena.lampugnani@laser-group.com>
This commit is contained in:
parent
c0fa82fcf9
commit
0973810c09
@ -153,10 +153,13 @@
|
||||
<Content Include="Content\Admin\images\scheduled.gif" />
|
||||
<Content Include="Module.txt" />
|
||||
<Content Include="Scripts\orchard-blogs-archives.js" />
|
||||
<Content Include="Scripts\orchard-blogs-archives.min.js" />
|
||||
<Content Include="Styles\images\menu.blog.png" />
|
||||
<Content Include="Styles\menu.blog-admin.css" />
|
||||
<Content Include="Styles\orchard-blogs-admin.css" />
|
||||
<Content Include="Styles\orchard-blogs-admin.min.css" />
|
||||
<Content Include="Styles\orchard-blogs-archives.css" />
|
||||
<Content Include="Styles\orchard-blogs-archives.min.css" />
|
||||
<Content Include="Views\BlogAdmin\Create.cshtml" />
|
||||
<Content Include="Views\BlogAdmin\Edit.cshtml" />
|
||||
<Content Include="Views\BlogAdmin\Item.cshtml" />
|
||||
@ -276,4 +279,4 @@
|
||||
</PropertyGroup>
|
||||
<Error Condition="!Exists('..\..\..\packages\Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1\build\net46\Microsoft.CodeDom.Providers.DotNetCompilerPlatform.props')" Text="$([System.String]::Format('$(ErrorText)', '..\..\..\packages\Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1\build\net46\Microsoft.CodeDom.Providers.DotNetCompilerPlatform.props'))" />
|
||||
</Target>
|
||||
</Project>
|
||||
</Project>
|
@ -4,10 +4,14 @@ namespace Orchard.Blogs {
|
||||
public class ResourceManifest : IResourceManifestProvider {
|
||||
public void BuildManifests(ResourceManifestBuilder builder) {
|
||||
var manifest = builder.Add();
|
||||
manifest.DefineStyle("BlogsAdmin").SetUrl("orchard-blogs-admin.css");
|
||||
manifest.DefineStyle("BlogsArchives").SetUrl("orchard-blogs-archives.css");
|
||||
manifest.DefineStyle("BlogsAdmin")
|
||||
.SetUrl("orchard-blogs-admin.min.css", "orchard-blogs-admin.css");
|
||||
manifest.DefineStyle("BlogsArchives")
|
||||
.SetUrl("orchard-blogs-archives.min.css", "orchard-blogs-archives.css");
|
||||
|
||||
manifest.DefineScript("BlogsArchives").SetUrl("orchard-blogs-archives.js").SetDependencies("jQuery");
|
||||
manifest.DefineScript("BlogsArchives")
|
||||
.SetUrl("orchard-blogs-archives.min.js", "orchard-blogs-archives.js")
|
||||
.SetDependencies("jQuery");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
1
src/Orchard.Web/Modules/Orchard.Blogs/Scripts/orchard-blogs-archives.min.js
vendored
Normal file
1
src/Orchard.Web/Modules/Orchard.Blogs/Scripts/orchard-blogs-archives.min.js
vendored
Normal file
@ -0,0 +1 @@
|
||||
!function($){$((function(){$(".archives ul.years li.previous").each((function(){$(this).click((function(ev){ev&&!$(ev.target).not("a").size()||($(this).toggleClass("open"),$(this).find("h4>span").toggle(),$(this).children("ul").toggle())}))}))}))}(jQuery);
|
1
src/Orchard.Web/Modules/Orchard.Blogs/Styles/orchard-blogs-admin.min.css
vendored
Normal file
1
src/Orchard.Web/Modules/Orchard.Blogs/Styles/orchard-blogs-admin.min.css
vendored
Normal file
@ -0,0 +1 @@
|
||||
#main .blog-description p{margin-bottom:1em}
|
1
src/Orchard.Web/Modules/Orchard.Blogs/Styles/orchard-blogs-archives.min.css
vendored
Normal file
1
src/Orchard.Web/Modules/Orchard.Blogs/Styles/orchard-blogs-archives.min.css
vendored
Normal file
@ -0,0 +1 @@
|
||||
.archives h3{margin-bottom:0}.archives ul{margin:0;padding:0}.archives ul .archives li{list-style-type:none}.archives ul.years li{list-style-type:none;margin:.6em 0 0}.archives ul.archiveMonthList li{margin:.2em 0}.archives ul.archiveMonthList li.first{margin-top:0}.archives ul.archiveMonthList li.last{margin-bottom:0}.archives ul.years li.previous h4 span{display:none}html.dyn .archives ul.years li.previous h4 span{display:inline}html.dyn .archives ul.years li h4,html.dyn .archives ul.years li ul{margin:.2em .2ex}html.dyn .archives ul.years li.previous h4:before{content:"⇓ "}html.dyn .archives ul.years li.previous{cursor:pointer;padding:.1em .2ex .2em 2ex;margin:0 -2ex}html.dyn .archives ul.years li.previous.hover{background-position:0 6px}html.dyn .archives ul.years li.previous.open h4:before{content:"⇑ "}html.dyn .archives ul.years li.previous.open.hover{background-position:0 6px}html.dyn .archives ul.years li.previous ul{display:none;margin-left:2ex}
|
Loading…
Reference in New Issue
Block a user