diff options
| author | Alon Levy <alon@pobox.com> | 2015-04-06 17:30:53 +0300 |
|---|---|---|
| committer | Alon Levy <alon@pobox.com> | 2015-04-06 17:30:54 +0300 |
| commit | 938e1ba26bf27c6bb8055baff5c1082a8a20d760 (patch) | |
| tree | 6c0b81b7fe12b3be7607168dc81c332622817627 /res/client/css/style.css | |
| parent | 85ec8858211db3763782e55735ab0310dcc62203 (diff) | |
client: css: enable no opacity hover.
side effect: no more click to deselect before select (easier to implement).
resolve #430
Diffstat (limited to 'res/client/css/style.css')
| -rw-r--r-- | res/client/css/style.css | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/res/client/css/style.css b/res/client/css/style.css index 75315690..4899f5b6 100644 --- a/res/client/css/style.css +++ b/res/client/css/style.css @@ -882,6 +882,13 @@ p { font-size: 18px; z-index: 100; } +.notselected .circle, .notselected * { + opacity: 0.2; + -webkit-filter: blur(10px); } + +.linklabel.notselected { + display: none; } + .circle { z-index: 100; pointer-events: all; @@ -992,14 +999,6 @@ p { fill: #919095; } /* Selected parts of the graph, right now by clicking, later with search. */ -.notselected { - opacity: 0.2; - pointer-events: none; - -webkit-filter: blur(10px); } - -.linklabel.notselected { - display: none; } - .node.first-selected .circle { stroke: #fad900; stroke-opacity: 1; |
