From 7a5cc0d317f150ee0f3df28d7354cbbebc197835 Mon Sep 17 00:00:00 2001 From: Tom Robinson <tlrobinson@gmail.com> Date: Mon, 21 Mar 2016 14:18:07 -0700 Subject: [PATCH] Fix chart dot radius in Safari --- frontend/src/components/dashboard/dashboard.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/src/components/dashboard/dashboard.css b/frontend/src/components/dashboard/dashboard.css index 9c7039529bd..cba7557ef5e 100644 --- a/frontend/src/components/dashboard/dashboard.css +++ b/frontend/src/components/dashboard/dashboard.css @@ -313,7 +313,7 @@ } .enable-dots .dc-tooltip circle.dot { - r: 3 !important; + r: 3px !important; fill: white; stroke: currentColor; stroke-width: 2; @@ -328,7 +328,7 @@ .enable-dots-onhover .dc-tooltip circle.dot:hover, .enable-dots-onhover .dc-tooltip circle.dot.hover { - r: 3 !important; + r: 3px !important; fill: white; stroke: currentColor; stroke-width: 2; -- GitLab