From 803b2a7f0536f2afb56a5fdbef21fce17e8bdf09 Mon Sep 17 00:00:00 2001 From: Martin Raifer Date: Tue, 27 Sep 2022 16:44:53 +0200 Subject: [PATCH] render `natural=strait` features in blue color, closes #9294 --- CHANGELOG.md | 2 ++ css/25_areas.css | 2 ++ 2 files changed, 4 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8f8e00e15..e65a0cf48 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -43,8 +43,10 @@ _Breaking developer changes, which may affect downstream projects or sites that #### :white_check_mark: Validation #### :bug: Bugfixes #### :rocket: Presets +* Render `natural=strait` features in blue color ([#9294]) #### :hammer: Development +[#9294]: https://github.com/openstreetmap/iD/issues/9294 # 2.22.0 ##### 2022-Sep-27 diff --git a/css/25_areas.css b/css/25_areas.css index 27db4a55d..7bb85d6f4 100644 --- a/css/25_areas.css +++ b/css/25_areas.css @@ -78,12 +78,14 @@ path.fill.tag-golf-green { path.stroke.tag-amenity-fountain, path.stroke.tag-leisure-swimming_pool, path.stroke.tag-natural-bay, +path.stroke.tag-natural-strait, path.stroke.tag-natural-water { stroke: rgb(119, 211, 222); } path.fill.tag-amenity-fountain, path.fill.tag-leisure-swimming_pool, path.fill.tag-natural-bay, +path.fill.tag-natural-strait, path.fill.tag-natural-water { stroke: rgba(119, 211, 222, 0.3); fill: rgba(119, 211, 222, 0.3);