From cca633415ab931084d136e6d8fb4ecf44482e6d4 Mon Sep 17 00:00:00 2001 From: Bryan Housel Date: Mon, 4 Nov 2019 09:49:56 -0500 Subject: [PATCH] Add `landuse=village_green` to the list of green rendered areas (closes #7011) --- css/25_areas.css | 46 ++++++++++++++++++++++++---------------------- 1 file changed, 24 insertions(+), 22 deletions(-) diff --git a/css/25_areas.css b/css/25_areas.css index 36873b938..abc744c01 100644 --- a/css/25_areas.css +++ b/css/25_areas.css @@ -23,34 +23,36 @@ path.stroke.old-multipolygon { /* Green things */ -path.stroke.tag-natural, -path.stroke.tag-natural-wood, -path.stroke.tag-leisure-nature_reserve, -path.stroke.tag-leisure-pitch, -path.stroke.tag-leisure-track, -path.stroke.tag-leisure-golf_course, -path.stroke.tag-leisure-garden, -path.stroke.tag-leisure-park, -path.stroke.tag-landuse-recreation_ground, +path.stroke.tag-barrier-hedge, +path.stroke.tag-landuse-flowerbed, path.stroke.tag-landuse-forest, path.stroke.tag-landuse-grass, -path.stroke.tag-landuse-flowerbed, -path.stroke.tag-barrier-hedge { +path.stroke.tag-landuse-recreation_ground, +path.stroke.tag-landuse-village_green, +path.stroke.tag-leisure-garden, +path.stroke.tag-leisure-golf_course, +path.stroke.tag-leisure-nature_reserve, +path.stroke.tag-leisure-park, +path.stroke.tag-leisure-pitch, +path.stroke.tag-leisure-track, +path.stroke.tag-natural, +path.stroke.tag-natural-wood { stroke: rgb(140, 208, 95); } -path.fill.tag-natural, -path.fill.tag-natural-wood, -path.fill.tag-leisure-nature_reserve, -path.fill.tag-leisure-pitch, -path.fill.tag-leisure-track, -path.fill.tag-leisure-golf_course, -path.fill.tag-leisure-garden, -path.fill.tag-leisure-park, -path.fill.tag-landuse-recreation_ground, +path.fill.tag-barrier-hedge, +path.fill.tag-landuse-flowerbed, path.fill.tag-landuse-forest, path.fill.tag-landuse-grass, -path.fill.tag-landuse-flowerbed, -path.fill.tag-barrier-hedge { +path.fill.tag-landuse-recreation_ground, +path.fill.tag-landuse-village_green, +path.fill.tag-leisure-garden, +path.fill.tag-leisure-golf_course, +path.fill.tag-leisure-nature_reserve, +path.fill.tag-leisure-park, +path.fill.tag-leisure-pitch, +path.fill.tag-leisure-track, +path.fill.tag-natural, +path.fill.tag-natural-wood { stroke: rgba(140, 208, 95, 0.3); fill: rgba(140, 208, 95, 0.3); }