Skip to content

Commit

Permalink
(EJ2-841403)-Changes
Browse files Browse the repository at this point in the history
  • Loading branch information
SF3696 committed Aug 30, 2023
1 parent 4128e20 commit 2b83259
Show file tree
Hide file tree
Showing 81 changed files with 45,327 additions and 3,718 deletions.
Binary file not shown.
Binary file not shown.
Empty file.
1,038 changes: 1,038 additions & 0 deletions .vs/DiagramBuilder/config/applicationhost.config

Large diffs are not rendered by default.

Binary file added .vs/DiagramBuilder/v17/.suo
Binary file not shown.
18 changes: 5 additions & 13 deletions App_Start/BundleConfig.cs
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
using System.Web;
using System.Web.Optimization;

namespace NodeAnnotationIssue
namespace DiagramBuilder
{
public class BundleConfig
{
// For more information on bundling, visit http://go.microsoft.com/fwlink/?LinkId=301862
// For more information on bundling, visit https://go.microsoft.com/fwlink/?LinkId=301862
public static void RegisterBundles(BundleCollection bundles)
{
bundles.Add(new ScriptBundle("~/bundles/jquery").Include(
Expand All @@ -15,24 +15,16 @@ public static void RegisterBundles(BundleCollection bundles)
"~/Scripts/jquery.validate*"));

// Use the development version of Modernizr to develop with and learn from. Then, when you're
// ready for production, use the build tool at http://modernizr.com to pick only the tests you need.
// ready for production, use the build tool at https://modernizr.com to pick only the tests you need.
bundles.Add(new ScriptBundle("~/bundles/modernizr").Include(
"~/Scripts/modernizr-*"));

bundles.Add(new ScriptBundle("~/bundles/bootstrap").Include(
"~/Scripts/bootstrap.js",
"~/Scripts/respond.js"));
bundles.Add(new Bundle("~/bundles/bootstrap").Include(
"~/Scripts/bootstrap.js"));

bundles.Add(new StyleBundle("~/Content/css").Include(
"~/Content/bootstrap.css",
"~/Content/site.css"));

bundles.Add(new ScriptBundle("~/bundles/ejscripts").Include(
"~/Scripts/jsrender.min.js",
"~/Scripts/ej/ej.web.all.min.js",
"~/Scripts/ej/ej.unobtrusive.min.js"));
bundles.Add(new StyleBundle("~/bundles/ejstyles").Include(
"~/ejThemes/flat-saffron/ej.web.all.min.css"));
}
}
}
2 changes: 1 addition & 1 deletion App_Start/FilterConfig.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using System.Web;
using System.Web.Mvc;

namespace NodeAnnotationIssue
namespace DiagramBuilder
{
public class FilterConfig
{
Expand Down
5 changes: 2 additions & 3 deletions App_Start/RouteConfig.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,14 @@
using System.Web.Mvc;
using System.Web.Routing;

namespace NodeAnnotationIssue
namespace DiagramBuilder
{
public class RouteConfig
{
public static void RegisterRoutes(RouteCollection routes)
{
routes.IgnoreRoute("{resource}.axd/{*pathInfo}");
routes.IgnoreRoute("wcf/{resource}.svc/{*pathInfo}");
routes.IgnoreRoute("wcf/{resource}.svc");

routes.MapRoute(
name: "Default",
url: "{controller}/{action}/{id}",
Expand Down
33 changes: 8 additions & 25 deletions Content/Site.css
Original file line number Diff line number Diff line change
@@ -1,37 +1,20 @@
/* Set padding to keep content from hitting the edges */
.body-content {
margin-top: 15px;
padding-left: 15px;
padding-right: 15px;
}

/* Override the default bootstrap behavior where horizontal description lists
will truncate terms that are too long to fit in the left column
*/
.dl-horizontal dt {
white-space: normal;
}

/* Set width on the form input elements since they're 100% wide by default */
input,
select,
textarea {
max-width: 280px;
}

/* styles for validation helpers */
.field-validation-error {
color: #b94a48;
}

.field-validation-valid {
display: none;
}

input.input-validation-error {
border: 1px solid #b94a48;
}

input[type="checkbox"].input-validation-error {
border: 0 none;
}

.validation-summary-errors {
color: #b94a48;
}

.validation-summary-valid {
display: none;
}
1 change: 0 additions & 1 deletion Content/assets/dbstyle/diagrambuilder.css
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,6 @@ input, button, select, textarea {
background-color:#fafafa;
width:100%;
height:calc(100% - 28px);
overflow:auto;
}

.sidebar.show-overview .db-palette-parent {
Expand Down
Loading

0 comments on commit 2b83259

Please sign in to comment.