From b2569e255440d3b4474c43b59b4cf206081e5478 Mon Sep 17 00:00:00 2001 From: Quincy Morgan Date: Fri, 2 Nov 2018 19:41:03 -0700 Subject: [PATCH 1/2] Use the green stroke color to render barrier=hedge --- css/25_areas.css | 1 + css/50_misc.css | 4 +++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/css/25_areas.css b/css/25_areas.css index 2805d5e0b..3cd56114c 100644 --- a/css/25_areas.css +++ b/css/25_areas.css @@ -23,6 +23,7 @@ path.stroke.old-multipolygon { /* Green things */ path.stroke.tag-landuse, +path.stroke.tag-barrier-hedge, path.stroke.tag-natural, path.stroke.tag-leisure-nature_reserve, path.stroke.tag-leisure-pitch, diff --git a/css/50_misc.css b/css/50_misc.css index 7fefafc97..14629185e 100644 --- a/css/50_misc.css +++ b/css/50_misc.css @@ -72,8 +72,10 @@ path.stroke.tag-natural-tree_row { /* barriers */ -path.stroke.tag-barrier { +path.stroke.tag-barrier:not(.tag-barrier-hedge) { stroke: #ddd; +} +path.stroke.tag-barrier { stroke-width: 3px; stroke-linecap: round; stroke-dasharray: 15, 5, 1, 5; From edca5f2d2313709de3151a2a97a9b101c283e024 Mon Sep 17 00:00:00 2001 From: Quincy Morgan Date: Fri, 2 Nov 2018 19:54:12 -0700 Subject: [PATCH 2/2] Fixes placement of .tag-barrier-hedge css line --- css/25_areas.css | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/css/25_areas.css b/css/25_areas.css index 3cd56114c..f5fd3cd90 100644 --- a/css/25_areas.css +++ b/css/25_areas.css @@ -23,11 +23,11 @@ path.stroke.old-multipolygon { /* Green things */ path.stroke.tag-landuse, -path.stroke.tag-barrier-hedge, path.stroke.tag-natural, path.stroke.tag-leisure-nature_reserve, path.stroke.tag-leisure-pitch, -path.stroke.tag-leisure-park { +path.stroke.tag-leisure-park, +path.stroke.tag-barrier-hedge { stroke: rgb(140, 208, 95); } path.fill.tag-landuse, @@ -275,4 +275,3 @@ path.fill.tag-natural-glacier { border-color: rgb(170, 170, 170); background: rgba(170, 170, 170, 0.3); } -