mirror of
https://github.com/FoggedLens/iD.git
synced 2026-05-15 13:38:26 +02:00
@@ -59,6 +59,7 @@ _Breaking developer changes, which may affect downstream projects or sites that
|
||||
* Do not overwrite existing `*=no` tags by a preset's `addTags`
|
||||
* Imply `access=no` in access field of `highway=construction` objects ([#9102])
|
||||
* Don't show non-language tag-suffixes in multilingual name field ([#9124], thanks [@wcedmisten])
|
||||
* Render horse riding centers like farmyards ([#9118])
|
||||
#### Other
|
||||
* Redact more API tokens from custom imagery sources in changeset metadata tags ([#8976], thanks [@k-yle])
|
||||
#### :hammer: Development
|
||||
@@ -78,6 +79,7 @@ _Breaking developer changes, which may affect downstream projects or sites that
|
||||
[#9021]: https://github.com/openstreetmap/iD/pull/9021
|
||||
[#9102]: https://github.com/openstreetmap/iD/issues/9102
|
||||
[#9124]: https://github.com/openstreetmap/iD/pull/9124
|
||||
[#9118]: https://github.com/openstreetmap/iD/issues/9118
|
||||
[@wcedmisten]: https://github.com/wcedmisten
|
||||
|
||||
|
||||
|
||||
+6
-3
@@ -258,14 +258,17 @@ path.fill.tag-landuse-vineyard {
|
||||
|
||||
|
||||
/* Tan things */
|
||||
path.stroke.tag-landuse-farmyard {
|
||||
path.stroke.tag-landuse-farmyard,
|
||||
path.stroke.tag-leisure-horse_riding {
|
||||
stroke: rgb(245, 220, 186);
|
||||
}
|
||||
path.fill.tag-landuse-farmyard {
|
||||
path.fill.tag-landuse-farmyard,
|
||||
path.fill.tag-leisure-horse_riding {
|
||||
stroke: rgba(245, 220, 186, 0.3);
|
||||
fill: rgba(245, 220, 186, 0.3);
|
||||
}
|
||||
.preset-icon-fill path.area.stroke.tag-landuse-farmyard {
|
||||
.preset-icon-fill path.area.stroke.tag-landuse-farmyard
|
||||
.preset-icon-fill path.area.stroke.tag-leisure-horse_riding {
|
||||
stroke: rgb(226, 177, 111);
|
||||
}
|
||||
.pattern-color-farmyard {
|
||||
|
||||
@@ -38,6 +38,9 @@ var patterns = {
|
||||
quarry: 'quarry',
|
||||
vineyard: 'vineyard'
|
||||
},
|
||||
leisure: {
|
||||
horse_riding: 'farmyard'
|
||||
},
|
||||
natural: {
|
||||
beach: 'beach',
|
||||
grassland: 'grass',
|
||||
|
||||
Reference in New Issue
Block a user