Add build with new ellipse syntax

This commit is contained in:
Tomasz Szczęśniak-Szlagowski 2015-10-24 23:54:43 +01:00
parent e4d25ed9cd
commit 51d5c90c9f
12 changed files with 973 additions and 905 deletions

39
dist/mermaid.css vendored
View File

@ -2,13 +2,14 @@
/* Sequence Diagram variables */
/* Gantt chart variables */
.mermaid .label {
color: #333333;
color: #333;
}
.node rect,
.node circle,
.node ellipse,
.node polygon {
fill: #ececff;
stroke: #ccccff;
fill: #ECECFF;
stroke: #CCCCFF;
stroke-width: 1px;
}
.edgePath .path {
@ -21,11 +22,11 @@
stroke-width: 1px !important;
}
.cluster text {
fill: #333333;
fill: #333;
}
.actor {
stroke: #ccccff;
fill: #ececff;
stroke: #CCCCFF;
fill: #ECECFF;
}
text.actor {
fill: black;
@ -38,27 +39,27 @@ text.actor {
stroke-width: 1.5;
stroke-dasharray: "2 2";
marker-end: "url(#arrowhead)";
stroke: #333333;
stroke: #333;
}
.messageLine1 {
stroke-width: 1.5;
stroke-dasharray: "2 2";
stroke: #333333;
stroke: #333;
}
#arrowhead {
fill: #333333;
fill: #333;
}
#crosshead path {
fill: #333333 !important;
stroke: #333333 !important;
fill: #333 !important;
stroke: #333 !important;
}
.messageText {
fill: #333333;
fill: #333;
stroke: none;
}
.labelBox {
stroke: #ccccff;
fill: #ececff;
stroke: #CCCCFF;
fill: #ECECFF;
}
.labelText {
fill: black;
@ -72,7 +73,7 @@ text.actor {
stroke-width: 2;
stroke-dasharray: "2 2";
marker-end: "url(#arrowhead)";
stroke: #ccccff;
stroke: #CCCCFF;
}
.note {
stroke: #aaaa33;
@ -101,16 +102,16 @@ text.actor {
opacity: 0.2;
}
.sectionTitle0 {
fill: #333333;
fill: #333;
}
.sectionTitle1 {
fill: #333333;
fill: #333;
}
.sectionTitle2 {
fill: #333333;
fill: #333;
}
.sectionTitle3 {
fill: #333333;
fill: #333;
}
.sectionTitle {
text-anchor: start;

View File

@ -3,10 +3,11 @@
/* Gantt chart variables */
.mermaid .label {
font-family: 'trebuchet ms', verdana, arial;
color: #333333;
color: #333;
}
.node rect,
.node circle,
.node ellipse,
.node polygon {
fill: #cde498;
stroke: #13540c;
@ -23,7 +24,7 @@
stroke-width: 1px !important;
}
.cluster text {
fill: #333333;
fill: #333;
}
.actor {
stroke: #13540c;
@ -40,22 +41,22 @@ text.actor {
stroke-width: 1.5;
stroke-dasharray: "2 2";
marker-end: "url(#arrowhead)";
stroke: #333333;
stroke: #333;
}
.messageLine1 {
stroke-width: 1.5;
stroke-dasharray: "2 2";
stroke: #333333;
stroke: #333;
}
#arrowhead {
fill: #333333;
fill: #333;
}
#crosshead path {
fill: #333333 !important;
stroke: #333333 !important;
fill: #333 !important;
stroke: #333 !important;
}
.messageText {
fill: #333333;
fill: #333;
stroke: none;
}
.labelBox {
@ -103,16 +104,16 @@ text.actor {
opacity: 0.2;
}
.sectionTitle0 {
fill: #333333;
fill: #333;
}
.sectionTitle1 {
fill: #333333;
fill: #333;
}
.sectionTitle2 {
fill: #333333;
fill: #333;
}
.sectionTitle3 {
fill: #333333;
fill: #333;
}
.sectionTitle {
text-anchor: start;

385
dist/mermaid.js vendored

File diff suppressed because one or more lines are too long

12
dist/mermaid.min.js vendored

File diff suppressed because one or more lines are too long

385
dist/mermaid.slim.js vendored

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

385
dist/mermaidAPI.js vendored

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -1,4 +1,3 @@
@import url(http://fonts.googleapis.com/css?family=Open+Sans);
body {
margin: 0;
font-family: 'Open sans', sans-serif;

File diff suppressed because one or more lines are too long