css definitions added to nodes of all-inclusive-file class_definitions

parent 58b5dc88
...@@ -372,7 +372,11 @@ ...@@ -372,7 +372,11 @@
"Dream.Exit" : { "Dream.Exit" : {
"_class" : "node", "_class" : "node",
"name" : "Exit", "name" : "Exit",
"colour" : "#F0F", "css": {
"border" : "1px solid #ccb",
"background-color" : "#eef",
"background-image" : "linear-gradient(to bottom, #eef 0%, #dde 100%)"
},
"shape" : "rectangle", "shape" : "rectangle",
"description" : "A station where entities exits from the system", "description" : "A station where entities exits from the system",
"allOf" : [{ "allOf" : [{
...@@ -395,6 +399,11 @@ ...@@ -395,6 +399,11 @@
"Dream.Queue" : { "Dream.Queue" : {
"name" : "Queue", "name" : "Queue",
"_class" : "node", "_class" : "node",
"css": {
"border": "1px solid #bcc",
"background-color":"#eff",
"background-image": "linear-gradient(to bottom, #eff 0%, #dee 100%)"
},
"description" : "A buffer where entites can be hold until the next station is ready to process them", "description" : "A buffer where entites can be hold until the next station is ready to process them",
"allOf" : [{ "allOf" : [{
"$ref" : "#/node" "$ref" : "#/node"
...@@ -425,6 +434,11 @@ ...@@ -425,6 +434,11 @@
"name" : "Machine", "name" : "Machine",
"description" : "A station processing items for some time given by a distribution", "description" : "A station processing items for some time given by a distribution",
"_class" : "node", "_class" : "node",
"css": {
"order" : "1px solid #cbc",
"background-color" : "#fef",
"background-image" : "linear-gradient(to bottom, #fef 0%, #ede 100%)"
},
"allOf" : [{ "allOf" : [{
"$ref" : "#/node" "$ref" : "#/node"
}, { }, {
...@@ -459,6 +473,11 @@ ...@@ -459,6 +473,11 @@
"Dream.Source" : { "Dream.Source" : {
"name" : "Source", "name" : "Source",
"_class" : "node", "_class" : "node",
"css": {
"border" : "1px solid #bbc",
"background-color" : "#ffe",
"background-image": "linear-gradient(to bottom, #ffe 0%, #dde 100%)"
},
"description" : "A station creating entities", "description" : "A station creating entities",
"allOf" : [{ "allOf" : [{
"$ref" : "#/node" "$ref" : "#/node"
...@@ -492,6 +511,11 @@ ...@@ -492,6 +511,11 @@
"Dream.EventGenerator" : { "Dream.EventGenerator" : {
"name" : "Attainment", "name" : "Attainment",
"_class" : "node", "_class" : "node",
"css": {
"border" : "1px solid #cba",
"background-color" : "#fdc",
"background-image" : "linear-gradient(to bottom, #fdc 0%, #ecb 100%)"
},
"description" : "Attainment", "description" : "Attainment",
"allOf" : [{ "allOf" : [{
"$ref" : "#/node" "$ref" : "#/node"
...@@ -550,6 +574,11 @@ ...@@ -550,6 +574,11 @@
"Dream.Repairman" : { "Dream.Repairman" : {
"name" : "Repairman", "name" : "Repairman",
"_class" : "node", "_class" : "node",
"css": {
"border" : "1px solid #cbb",
"background-color" : "#fdd",
"background-image" : "linear-gradient(to bottom, #fdd 0%, #dcc 100%)"
},
"description" : "A resource that repairs stations in failure", "description" : "A resource that repairs stations in failure",
"allOf" : [{ "allOf" : [{
"$ref" : "#/node" "$ref" : "#/node"
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment