diff options
| author | Alon Levy <alon@pobox.com> | 2014-12-06 21:53:25 +0200 |
|---|---|---|
| committer | Alon Levy <alon@pobox.com> | 2014-12-06 21:53:29 +0200 |
| commit | ff798385d1d46aae2a289371e43f02922ca8c5aa (patch) | |
| tree | 569a2c7ae39751e0c793e6676e5a07e05d52f646 | |
| parent | 738eac0f36752c7b0f4f37d56ed9a9415131a3b6 (diff) | |
disable dragging bubble (css solution, drag d3 behavior confusing)
Fixes #190
| -rw-r--r-- | res/css/partials/graph-view.scss | 1 | ||||
| -rw-r--r-- | res/css/style.css | 3 |
2 files changed, 3 insertions, 1 deletions
diff --git a/res/css/partials/graph-view.scss b/res/css/partials/graph-view.scss index 1e003663..758285ea 100644 --- a/res/css/partials/graph-view.scss +++ b/res/css/partials/graph-view.scss @@ -76,6 +76,7 @@ } .circle.bubble { stroke: #101010; + pointer-events:none; } .circle.exit { stroke: $cyan; diff --git a/res/css/style.css b/res/css/style.css index eecbfd97..59361c7c 100644 --- a/res/css/style.css +++ b/res/css/style.css @@ -207,7 +207,8 @@ body.debug .debug-ui-right { stroke-opacity: 0.5; } .circle.bubble { - stroke: #101010; } + stroke: #101010; + pointer-events: none; } .circle.exit { stroke: #33c2e0; |
