Add preset for power=plant

(closes #3661)

This one was a little complicated because they are generally tagged along
with landuse=industrial, and we want to make sure the power=plant is
the tag used for matching.
This commit is contained in:
Bryan Housel
2016-12-18 21:27:34 -05:00
parent d69c4d6d9a
commit 82665a6883
10 changed files with 91 additions and 11 deletions
+6 -3
View File
@@ -296,14 +296,17 @@ path.fill.tag-landuse-commercial {
background-color: rgba(214, 136, 26, 0.3);
}
path.stroke.tag-landuse-industrial {
path.stroke.tag-landuse-industrial,
path.stroke.tag-power-plant {
stroke: rgb(228, 164, 245);
}
path.fill.tag-landuse-industrial {
path.fill.tag-landuse-industrial,
path.fill.tag-power-plant {
stroke: rgba(228, 164, 245, 0.3);
fill: rgba(228, 164, 245, 0.3);
}
.preset-icon-fill-area.tag-landuse-industrial {
.preset-icon-fill-area.tag-landuse-industrial,
.preset-icon-fill-area.tag-power-plant {
border-color: rgb(228, 164, 245);
background-color: rgba(228, 164, 245, 0.3);
}