diff options
author | Aslak Knutsen <aslak@redhat.com> | 2013-03-05 02:09:16 +0100 |
---|---|---|
committer | Aslak Knutsen <aslak@redhat.com> | 2013-03-05 10:24:03 +0100 |
commit | 331ea452fa1186e096e3a905b2b729a599d07b42 (patch) | |
tree | a8359f49cb8df027656067d1b67b522b13a1871a /hyperkitty/static/css | |
parent | 2df6a3857a9d75588a2242ae19d83b3355ad4bcc (diff) | |
download | hyperkitty-331ea452fa1186e096e3a905b2b729a599d07b42.tar.gz hyperkitty-331ea452fa1186e096e3a905b2b729a599d07b42.tar.xz hyperkitty-331ea452fa1186e096e3a905b2b729a599d07b42.zip |
Change Activity Graph from Protovis to d3 (#43)
Fixes failing javascipt in Opera and Chrome resulting
in no graph and no other javascript features.
Changed to precalculate all days in the begin_date...end_date
date range before matching email counts to ensure we have data
points for all days in the range.
Diffstat (limited to 'hyperkitty/static/css')
-rw-r--r-- | hyperkitty/static/css/hyperkitty-overview.css | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/hyperkitty/static/css/hyperkitty-overview.css b/hyperkitty/static/css/hyperkitty-overview.css index 458586b..cb489da 100644 --- a/hyperkitty/static/css/hyperkitty-overview.css +++ b/hyperkitty/static/css/hyperkitty-overview.css @@ -21,6 +21,16 @@ height: 330px; } +#fig .axis path, #fig .axis line { + fill: none; + stroke: #000; + shape-rendering: geometricPrecision; +} + +#fig .area { + fill: steelBlue; +} + #top-discussion, #discussion-by-topic, |