mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2025-10-21 11:17:28 +08:00
11 lines
342 B
C#
11 lines
342 B
C#
using Orchard.UI.Resources;
|
|
|
|
namespace Orchard.Comments {
|
|
public class ResourceManifest : IResourceManifestProvider {
|
|
public void BuildManifests(ResourceManifestBuilder builder) {
|
|
var manifest = builder.Add();
|
|
manifest.DefineStyle("Admin").SetUrl("orchard-comments-admin.css");
|
|
}
|
|
}
|
|
}
|