From c753dcce46c36c8d3fd94c095dd8a0f3e38f5de0 Mon Sep 17 00:00:00 2001
From: Jeroen Hoek <mail@jeroenhoek.nl>
Date: Sun, 5 Mar 2023 12:38:45 +0100
Subject: [PATCH] Add minimal rendering support for man_made=quay

`man_made=quay` is used to mark artificial sections of sea shores or
river banks as suitable for mooring. This patch introduces minimal
rendering matching that of `man_made=pier`.
---
 resources/styles/standard/elemstyles.mapcss | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/resources/styles/standard/elemstyles.mapcss b/resources/styles/standard/elemstyles.mapcss
index db8f12249..7049547c0 100644
--- a/resources/styles/standard/elemstyles.mapcss
+++ b/resources/styles/standard/elemstyles.mapcss
@@ -1563,10 +1563,12 @@ node[man_made=adit] {
     icon-image: "presets/landmark/adit.svg";
     set icon_z17;
 }
-area[man_made=pier]:closed {
+area[man_made=pier]:closed,
+area[man_made=quay]:closed {
     fill-color: pier#660000;
 }
-way[man_made=pier] {
+way[man_made=pier],
+way[man_made=quay] {
     width: 2;
     color: pier#660000;
 }
-- 
2.34.1

