Skip to content

Commit

Permalink
将样式编辑器独立成插件 #181
Browse files Browse the repository at this point in the history
  • Loading branch information
SeriaWei committed Apr 28, 2018
1 parent 0bb0e3d commit d2f9fe1
Show file tree
Hide file tree
Showing 45 changed files with 2,501 additions and 1,522 deletions.
7 changes: 7 additions & 0 deletions ZKEACMS.sln
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,8 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ZKEACMS.Sitemap", "src\ZKEA
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ZKEACMS.Shop", "src\ZKEACMS.Shop\ZKEACMS.Shop.csproj", "{17C35287-C138-43E5-B033-A329BC6A1BAF}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ZKEACMS.StyleEditor", "src\ZKEACMS.StyleEditor\ZKEACMS.StyleEditor.csproj", "{A2A8B5F5-E941-423B-A405-2F4DA063EBC9}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Expand Down Expand Up @@ -79,6 +81,10 @@ Global
{17C35287-C138-43E5-B033-A329BC6A1BAF}.Debug|Any CPU.Build.0 = Debug|Any CPU
{17C35287-C138-43E5-B033-A329BC6A1BAF}.Release|Any CPU.ActiveCfg = Release|Any CPU
{17C35287-C138-43E5-B033-A329BC6A1BAF}.Release|Any CPU.Build.0 = Release|Any CPU
{A2A8B5F5-E941-423B-A405-2F4DA063EBC9}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{A2A8B5F5-E941-423B-A405-2F4DA063EBC9}.Debug|Any CPU.Build.0 = Debug|Any CPU
{A2A8B5F5-E941-423B-A405-2F4DA063EBC9}.Release|Any CPU.ActiveCfg = Release|Any CPU
{A2A8B5F5-E941-423B-A405-2F4DA063EBC9}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
Expand All @@ -95,6 +101,7 @@ Global
{3D237CC3-D4FD-452C-85D5-3D5F21EE886B} = {81AA2238-D340-4199-B3B9-76AB9792B3E7}
{C5B5DA19-348F-4F58-B995-747B126BC1F7} = {81AA2238-D340-4199-B3B9-76AB9792B3E7}
{17C35287-C138-43E5-B033-A329BC6A1BAF} = {81AA2238-D340-4199-B3B9-76AB9792B3E7}
{A2A8B5F5-E941-423B-A405-2F4DA063EBC9} = {81AA2238-D340-4199-B3B9-76AB9792B3E7}
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {ABBB3E10-D2E8-438B-B5BB-AB4E824BCB6A}
Expand Down
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
html {
background-color: #212636;
margin:0;
padding:0;
overflow:hidden;
background-color: #212636 !important;
margin: 0 !important;
padding: 0 !important;
overflow: hidden !important;
}
body {
background-color: #212636;
color: #B0B8C5;
font-size: 13px;
margin: 0;
padding: 0;
background-color: #212636 !important;
color: #B0B8C5 !important;
font-size: 13px !important;
margin: 0 !important;
padding: 0 !important;
}

.editor-main {
Expand Down
1 change: 1 addition & 0 deletions src/ZKEACMS.StyleEditor/Content/main.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

19 changes: 19 additions & 0 deletions src/ZKEACMS.StyleEditor/Controllers/StyleEditorController.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Mvc;
using Easy.Mvc.Controllers;
using Easy.Mvc.Authorize;

namespace ZKEACMS.StyleEditor.Controllers
{
[DefaultAuthorize]
public class StyleEditorController : Controller
{
public IActionResult Edit()
{
return View();
}
}
}
16 changes: 16 additions & 0 deletions src/ZKEACMS.StyleEditor/Program.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
/*!
* http://www.zkea.net/
* Copyright 2017 ZKEASOFT
* http://www.zkea.net/licenses
*/

namespace ZKEACMS.StyleEditor
{
public class Program
{
public static void Main(string[] args)
{

}
}
}
2 changes: 2 additions & 0 deletions src/ZKEACMS.StyleEditor/Properties/launchSettings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
{
}
Binary file added src/ZKEACMS.StyleEditor/Scripts/_references.js
Binary file not shown.
File renamed without changes.
Loading

0 comments on commit d2f9fe1

Please sign in to comment.