From 15ebd4ec66945e31568255ca1b9e90ce6535c8c0 Mon Sep 17 00:00:00 2001 From: Sebastian Proost Date: Wed, 24 Jan 2018 07:07:44 +0100 Subject: [PATCH] Added slight border to nodes in cytoscape to make the shape more obvious --- conekt/static/js/cytoscape.cycss | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/conekt/static/js/cytoscape.cycss b/conekt/static/js/cytoscape.cycss index 5071477..5f6b7e6 100644 --- a/conekt/static/js/cytoscape.cycss +++ b/conekt/static/js/cytoscape.cycss @@ -35,6 +35,12 @@ node:selected { line-color: black; } +node:unselected { + border-width:1px; + border-color:#888888; + border-opacity:0.5; +} + node.hidden { visibility: hidden; }