-
Notifications
You must be signed in to change notification settings - Fork 213
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 9375935
Showing
171 changed files
with
4,922 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<meta charset="utf-8"> | ||
<title>Blazor.Diagrams</title> | ||
<script type="text/javascript"> | ||
// Single Page Apps for GitHub Pages | ||
// https://github.com/rafrex/spa-github-pages | ||
// Copyright (c) 2016 Rafael Pedicini, licensed under the MIT License | ||
// ---------------------------------------------------------------------- | ||
// This script takes the current url and converts the path and query | ||
// string into just a query string, and then redirects the browser | ||
// to the new url with only a query string and hash fragment, | ||
// e.g. http://www.foo.tld/one/two?a=b&c=d#qwe, becomes | ||
// http://www.foo.tld/?p=/one/two&q=a=b~and~c=d#qwe | ||
// Note: this 404.html file must be at least 512 bytes for it to work | ||
// with Internet Explorer (it is currently > 512 bytes) | ||
// If you're creating a Project Pages site and NOT using a custom domain, | ||
// then set segmentCount to 1 (enterprise users may need to set it to > 1). | ||
// This way the code will only replace the route part of the path, and not | ||
// the real directory in which the app resides, for example: | ||
// https://username.github.io/repo-name/one/two?a=b&c=d#qwe becomes | ||
// https://username.github.io/repo-name/?p=/one/two&q=a=b~and~c=d#qwe | ||
// Otherwise, leave segmentCount as 0. | ||
var segmentCount = 0; | ||
var l = window.location; | ||
l.replace( | ||
l.protocol + '//' + l.hostname + (l.port ? ':' + l.port : '') + | ||
l.pathname.split('/').slice(0, 1 + segmentCount).join('/') + '/?p=/' + | ||
l.pathname.slice(1).split('/').slice(segmentCount).join('/').replace(/&/g, '~and~') + | ||
(l.search ? '&q=' + l.search.slice(1).replace(/&/g, '~and~') : '') + | ||
l.hash | ||
); | ||
</script> | ||
</head> | ||
<body> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,205 @@ | ||
@import '_content/Z.Blazor.Diagrams/Z.Blazor.Diagrams.bundle.scp.css'; | ||
|
||
/* /Components/Documentation/MyDiagram.razor.rz.scp.css */ | ||
.diagram-container[b-d5983lvpho] { | ||
width: 100%; | ||
height: 400px; | ||
border: 1px solid black; | ||
} | ||
/* /Components/Documentation/Nodes/AddTwoNumbersWidget.razor.rz.scp.css */ | ||
div[b-6dba4kgoq9] { | ||
width: 230px; | ||
outline: 1px solid black; | ||
padding: 20px; | ||
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19); | ||
} | ||
|
||
div > h5[b-6dba4kgoq9] { | ||
font-weight: 600; | ||
text-transform: uppercase; | ||
margin-bottom: 10px; | ||
} | ||
|
||
div > input[type=number][b-6dba4kgoq9] { | ||
padding: 3px; | ||
border-radius: 3px; | ||
border: 1px solid black; | ||
margin-bottom: 8px; | ||
} | ||
|
||
[b-6dba4kgoq9] .diagram-port { | ||
position: absolute; | ||
width: 30px; | ||
height: 20px; | ||
background-color: black; | ||
left: 50%; | ||
transform: translate(-50%, -50%); | ||
} | ||
|
||
[b-6dba4kgoq9] .diagram-port.top { | ||
border-top-left-radius: 50%; | ||
border-top-right-radius: 50%; | ||
top: -10px; | ||
} | ||
|
||
[b-6dba4kgoq9] .diagram-port.bottom { | ||
border-bottom-left-radius: 50%; | ||
border-bottom-right-radius: 50%; | ||
bottom: -30px; | ||
} | ||
/* /Components/Documentation/Nodes/ArithmeticContainerWidget.razor.rz.scp.css */ | ||
.arithmetic-container[b-8n2lkq4wyt] { | ||
width: 100%; | ||
height: 100%; | ||
border: 2px dashed black; | ||
} | ||
|
||
.arithmetic-container .title[b-8n2lkq4wyt] { | ||
position: absolute; | ||
right: 0; | ||
padding: 8px; | ||
text-align: right; | ||
border-left: 2px dashed black; | ||
border-bottom: 2px dashed black; | ||
} | ||
|
||
[b-8n2lkq4wyt] .diagram-port { | ||
position: absolute; | ||
width: 30px; | ||
height: 20px; | ||
background-color: black; | ||
left: 50%; | ||
transform: translate(-50%, -50%); | ||
} | ||
|
||
[b-8n2lkq4wyt] .diagram-port.top { | ||
border-top-left-radius: 50%; | ||
border-top-right-radius: 50%; | ||
top: -10px; | ||
} | ||
|
||
[b-8n2lkq4wyt] .diagram-port.bottom { | ||
border-bottom-left-radius: 50%; | ||
border-bottom-right-radius: 50%; | ||
bottom: -30px; | ||
} | ||
/* /Components/Documentation/Nodes/GingerbreadWidget.razor.rz.scp.css */ | ||
.gingerbread .body[b-v2f3mg7kf1] { | ||
fill: #cd803d; | ||
} | ||
|
||
.gingerbread .eye[b-v2f3mg7kf1] { | ||
fill: white; | ||
} | ||
|
||
.gingerbread .mouth[b-v2f3mg7kf1] { | ||
fill: none; | ||
stroke: white; | ||
stroke-width: 2px; | ||
} | ||
|
||
.gingerbread .limb[b-v2f3mg7kf1] { | ||
stroke: #cd803d; | ||
stroke-width: 35px; | ||
stroke-linecap: round; | ||
} | ||
|
||
.gingerbread .hand[b-v2f3mg7kf1] { | ||
fill: #cd803d; | ||
} | ||
|
||
.gingerbread .hand:hover[b-v2f3mg7kf1] { | ||
fill: #75441a; | ||
} | ||
/* /Components/Landing/LandingShowcaseDiagram.razor.rz.scp.css */ | ||
[b-ltyhyemv0j] g.diagram-link path:not(.selection-helper) { | ||
stroke-dasharray: 5; | ||
animation: dash-b-ltyhyemv0j .5s linear infinite; | ||
} | ||
|
||
@keyframes dash-b-ltyhyemv0j { | ||
to { | ||
stroke-dashoffset: -10; | ||
} | ||
} | ||
/* /Pages/Documentation/Controls/Customization.razor.rz.scp.css */ | ||
.diagram-container[b-g1qzdps6yg] { | ||
border: 1px solid black; | ||
caret-color: transparent; | ||
} | ||
/* /Pages/Documentation/Controls/Overview.razor.rz.scp.css */ | ||
.diagram-container[b-grmq5n0guq] { | ||
border: 1px solid black; | ||
caret-color: transparent; | ||
} | ||
/* /Pages/Documentation/Diagram/Api.razor.rz.scp.css */ | ||
tr td:first-child[b-ph29jzwque] { | ||
font-weight: 600; | ||
} | ||
/* /Pages/Documentation/Groups/Customization.razor.rz.scp.css */ | ||
.diagram-container[b-d26836f57s] { | ||
width: 100%; | ||
height: 650px; | ||
border: 1px solid black; | ||
} | ||
/* /Pages/Documentation/Groups/SvgCustomization.razor.rz.scp.css */ | ||
.diagram-container[b-j4129tciem] { | ||
width: 100%; | ||
height: 650px; | ||
border: 1px solid black; | ||
} | ||
/* /Pages/Documentation/Links/Anchors.razor.rz.scp.css */ | ||
.diagram-container[b-w4ungaik4c] { | ||
border: 1px solid black; | ||
caret-color: transparent; | ||
} | ||
/* /Pages/Documentation/Links/Markers.razor.rz.scp.css */ | ||
.diagram-container[b-71cvpos6zy] { | ||
border: 1px solid black; | ||
caret-color: transparent; | ||
} | ||
/* /Pages/Documentation/Links/PathGenerators.razor.rz.scp.css */ | ||
.diagram-container[b-p8y3u5d3iy] { | ||
border: 1px solid black; | ||
caret-color: transparent; | ||
} | ||
/* /Pages/Documentation/Links/Routers.razor.rz.scp.css */ | ||
.diagram-container[b-jj7nvn0ohh] { | ||
border: 1px solid black; | ||
caret-color: transparent; | ||
} | ||
/* /Pages/Documentation/Links/Vertices.razor.rz.scp.css */ | ||
.diagram-container[b-f74qyosye9] { | ||
border: 1px solid black; | ||
caret-color: transparent; | ||
} | ||
/* /Pages/Documentation/Nodes/Customization.razor.rz.scp.css */ | ||
.diagram-container[b-u0f4eg3htl] { | ||
width: 100%; | ||
height: 400px; | ||
border: 1px solid black; | ||
} | ||
/* /Pages/Documentation/Nodes/SvgCustomization.razor.rz.scp.css */ | ||
.diagram-container[b-o61ynfnohd] { | ||
width: 100%; | ||
height: 400px; | ||
border: 1px solid black; | ||
user-select: none; | ||
} | ||
/* /Pages/Documentation/Widgets/Grid.razor.rz.scp.css */ | ||
.diagram-container[b-di20f877u5] { | ||
border: 1px solid black; | ||
caret-color: transparent; | ||
} | ||
/* /Pages/Documentation/Widgets/Navigator.razor.rz.scp.css */ | ||
.diagram-container[b-sjai2yeky0] { | ||
border: 1px solid black; | ||
caret-color: transparent; | ||
} | ||
/* /Pages/Documentation/Widgets/SelectionBox.razor.rz.scp.css */ | ||
.diagram-container[b-tol9ek6bbb] { | ||
border: 1px solid black; | ||
caret-color: transparent; | ||
} | ||
/* /Shared/DocumentationLayout.razor.rz.scp.css */ | ||
/* /Shared/LandingLayout.razor.rz.scp.css */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
/* _content/Z.Blazor.Diagrams/Components/Widgets/GridWidget.razor.rz.scp.css */ |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Binary file not shown.
Oops, something went wrong.