make feature fill clickable in "Full Fill" rendering style

This commit is contained in:
Martin Raifer
2025-03-18 14:06:11 +01:00
parent f4230785e1
commit 4b7a20f628
2 changed files with 8 additions and 1 deletions
+1 -1
View File
@@ -49,6 +49,7 @@ _Breaking developer changes, which may affect downstream projects or sites that
* Fix some direction cones not appearing on railway tracks ([#10843], thanks [@k-yle])
* Better handling of rate limited API calls and other API errors ([#10299])
* Fix info boxes for descriptions of brands referenced by [NSI](https://github.com/osmlab/name-suggestion-index) presets ([#10885])
* Make features clickable when "Full Fill" rendering style is selected
#### :earth_asia: Localization
#### :hourglass: Performance
#### :mortar_board: Walkthrough / Help
@@ -66,7 +67,6 @@ _Breaking developer changes, which may affect downstream projects or sites that
[@0xatulpatil]: https://github.com/0xatulpatil
# 2.32.0
##### 2025-03-05
+7
View File
@@ -56,3 +56,10 @@
.ideditor.mode-select-note .fill-partial path.area.fill {
pointer-events: visibleStroke;
}
.ideditor.mode-browse .fill-full path.area.fill,
.ideditor.mode-select .fill-full path.area.fill,
.ideditor.mode-select-data .fill-full path.area.fill,
.ideditor.mode-select-error .fill-full path.area.fill,
.ideditor.mode-select-note .fill-full path.area.fill {
pointer-events: visibleFill;
}