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

View File

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

File diff suppressed because one or more lines are too long