diff options
| author | Ofer Lehr <ofer@oferlehr.com> | 2014-12-06 02:41:42 +0200 |
|---|---|---|
| committer | Ofer Lehr <ofer@oferlehr.com> | 2014-12-06 02:41:42 +0200 |
| commit | db0c31c980c6f247ee8a9712459be3490c6b3aa0 (patch) | |
| tree | e47d5261065406a169e8cb5d250bf172b98b08dc /res/css/partials | |
| parent | 296ff36fb375c1de1de32e9c0a9a23f949f79267 (diff) | |
Some tweaks to the graph styles
Diffstat (limited to 'res/css/partials')
| -rw-r--r-- | res/css/partials/graph-view.scss | 23 |
1 files changed, 14 insertions, 9 deletions
diff --git a/res/css/partials/graph-view.scss b/res/css/partials/graph-view.scss index 78765353..fefe163d 100644 --- a/res/css/partials/graph-view.scss +++ b/res/css/partials/graph-view.scss @@ -31,13 +31,13 @@ } .svg-input-fo-node input { - font-size:17px; + font-size: $h3-size; background-color: transparent; } .linklabel{ stroke: $dark-grey; - font-size: $h5-size; + font-size: $h4-size; background-color: transparent; } @@ -47,13 +47,15 @@ } .svg-input-fo-link input { - font-size: 14px; + font-size: $h4-size;; background-color: transparent; } .link { fill: none; - stroke: #404040; + stroke: $mid-grey; + stroke-width: 1px; + stroke-opacity: 0.5; z-index:1; } @@ -69,13 +71,15 @@ stroke-opacity: 0.5; } .circle.enter { - stroke: #EDE275; + stroke: $cyan; + stroke-opacity: 0.5; } .circle.bubble { stroke: #101010; } .circle.exit { - stroke: #EDE275; + stroke: $cyan; + stroke-opacity: 0.5; } .circle.chainlink { stroke: #AAA; @@ -142,7 +146,7 @@ /* Selected parts of the graph, right now by clicking, later with search. */ .notselected { - opacity: 0.3; + opacity: 0.2; } .graph.link.temp_and { @@ -159,8 +163,9 @@ .link.enter, .link.exit, .link.selected { fill: none; - stroke: #EDE275; - stroke-width: 4px; + stroke: $cyan; + stroke-opacity: 0.5; + stroke-width: 2px; z-index:1; } |
