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.
This commit is contained in:
Martin Raifer
2013-05-08 17:15:19 +03:00
parent 1c7d0ebc66
commit a9dbd277c5
+3 -3
View File
@@ -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;
}