diff options
author | moisseev <moiseev@mezonplus.ru> | 2020-02-02 13:51:20 +0300 |
---|---|---|
committer | moisseev <moiseev@mezonplus.ru> | 2020-02-02 13:51:20 +0300 |
commit | 63b918f38f90a2fbf49dac653412357e6062cf29 (patch) | |
tree | 80eddb1f4f6fb36d16918b8d2779b166ac32e2da /interface/css | |
parent | f99ecf611f1c43a5deca3f51a936931d7b197e4c (diff) | |
download | rspamd-63b918f38f90a2fbf49dac653412357e6062cf29.tar.gz rspamd-63b918f38f90a2fbf49dac653412357e6062cf29.zip |
[WebUI] Update D3Evolution to 1.2.0
+ Add cursor
The cursor location follows the mouse pointer movements when it hovers over the graph
and updates the coordinates of the cursor's cross-points in the graph legend.
Diffstat (limited to 'interface/css')
-rw-r--r-- | interface/css/d3evolution.css | 35 |
1 files changed, 33 insertions, 2 deletions
diff --git a/interface/css/d3evolution.css b/interface/css/d3evolution.css index 119b309e3..90b8ca68e 100644 --- a/interface/css/d3evolution.css +++ b/interface/css/d3evolution.css @@ -13,12 +13,43 @@ shape-rendering: crispEdges; } .d3evolution .grid path { - stroke-width: 0; + stroke-width: 0; } .d3evolution .axis, .d3evolution .legend { font-size: 12px; } +.d3evolution .legend .value { + font-size: 10px; +} +.d3evolution .cursor-time { + font-size: 10px; +} +.d3evolution .cursor { + shape-rendering: crispEdges; +} +.d3evolution .cursor .background { + stroke: white; +} +.d3evolution .cursor .foreground { + stroke-dasharray: 4, 2; +} +.d3evolution .cursor .x.foreground { + stroke: blue; +} +.d3evolution .cursor circle { + shape-rendering: geometricPrecision; +} +.d3evolution .cursor circle.foreground { + stroke-dasharray: none; + stroke: black; + opacity: .5; +} +/* +path.path { + shape-rendering: crispEdges; +} +*/ .d3evolution .axis path, .d3evolution .axis line { fill: none; @@ -28,7 +59,7 @@ .d3evolution .legend circle { stroke-width: 2px; } -.d3evolution .path-null{ +.d3evolution .path-null { fill: steelblue; fill-opacity: .1; } |