From a9dbd277c5af9faab048442b04ba6225e412742b Mon Sep 17 00:00:00 2001 From: Martin Raifer Date: Wed, 8 May 2013 17:15:19 +0300 Subject: [PATCH] use fill:none instead of fill:transparent `transparent` is not a valid [svg](http://www.w3.org/TR/SVG/painting.html#SpecifyingPaint) [color](http://www.w3.org/TR/SVG/types.html#DataTypeColor). Use `none` instead. --- css/map.css | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/css/map.css b/css/map.css index 5e70a6760..46df73da6 100644 --- a/css/map.css +++ b/css/map.css @@ -1051,9 +1051,9 @@ text.point { /* GPX Paths */ path.gpx { - stroke:#6AFF25; - stroke-width:2; - fill:transparent; + stroke: #6AFF25; + stroke-width: 2; + fill: none; pointer-events: none; }