From f1927defb08c601f2926cc9b55b836e5ffb1cfcb Mon Sep 17 00:00:00 2001 From: Christoph Dornieden <cdor@informatik.uni-kiel.de> Date: Wed, 22 Jun 2016 14:23:42 +0200 Subject: [PATCH] added explorviz --- .../style.js | 2 +- .../themes.js | 18 ++++++++++++++++-- 2 files changed, 17 insertions(+), 3 deletions(-) diff --git a/app/components/architecture-visualisation-cytoscape/style.js b/app/components/architecture-visualisation-cytoscape/style.js index cf1c54b..cd7a29f 100644 --- a/app/components/architecture-visualisation-cytoscape/style.js +++ b/app/components/architecture-visualisation-cytoscape/style.js @@ -48,7 +48,7 @@ $node > node { /* compounds. "Nodes" in meta model. $ selects the parent node th [type="serviceInstance"] { background-color: ${variables.serviceColor}; color: ${variables.serviceTextColor}; - border-color: ${variables.serviceBordertColor}; + border-color: ${variables.serviceBorderColor}; border-style: solid; border-opacity: 1; font-weight: bold; diff --git a/app/components/architecture-visualisation-cytoscape/themes.js b/app/components/architecture-visualisation-cytoscape/themes.js index 9dccc0d..c98dc90 100644 --- a/app/components/architecture-visualisation-cytoscape/themes.js +++ b/app/components/architecture-visualisation-cytoscape/themes.js @@ -6,8 +6,8 @@ export default { nodeTextColor : '#333399', nodeColor : 'white', nodeBorderColor : '#333399', - serviceTextColor : 'white', - serviceColor : '#333399', + serviceTextColor : '#333399', + serviceColor : 'white', serviceBorderColor : '#333399', arrowBorderColor : '#333399', arrowColor : '#333399', @@ -82,5 +82,19 @@ export default { arrowBorderColor : '#89888C', arrowColor : '#89888C', arrowLabelColor: '#403E21' + }, + 'explorviz' :{ + nodeGroupTextColor : 'black', + nodeGroupColor : '#c7c7c7', + nodeGroupBorderColor : '#c7c7c7', + nodeTextColor : 'black', + nodeColor : '#00bb41', + nodeBorderColor : '#00bb41', + serviceTextColor : 'white', + serviceColor : '#613eb4', + serviceBorderColor : '#613eb4', + arrowBorderColor : '#f2901c', + arrowColor : '#f2901c', + arrowLabelColor: 'black' } }; -- GitLab