Merge pull request #5459 from quincylvania/green-barrier-hedge

Use the green stroke color to render barrier=hedge
This commit is contained in:
Quincy Morgan
2018-11-02 20:27:53 -07:00
committed by GitHub
2 changed files with 5 additions and 3 deletions

View File

@@ -26,7 +26,8 @@ path.stroke.tag-landuse,
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,
@@ -274,4 +275,3 @@ path.fill.tag-natural-glacier {
border-color: rgb(170, 170, 170);
background: rgba(170, 170, 170, 0.3);
}

View File

@@ -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;