From 7b83e568e6d36cd76a1c9b9a4b2f39da922a9f68 Mon Sep 17 00:00:00 2001 From: Robbendebiene Date: Wed, 20 Oct 2021 09:52:47 +0200 Subject: [PATCH] Make image non-blocking for pointer inputs Currently the arm of the planet on https://www.openstreetmap.org/user/new is blocking pointer inputs on about a third of the email input field. This is solved by adding `pointer-events: none;` to the image. --- app/assets/stylesheets/common.scss | 1 + 1 file changed, 1 insertion(+) diff --git a/app/assets/stylesheets/common.scss b/app/assets/stylesheets/common.scss index f8cd32438..012021796 100644 --- a/app/assets/stylesheets/common.scss +++ b/app/assets/stylesheets/common.scss @@ -1063,6 +1063,7 @@ tr.turn:hover { background-image: image-url("sign-up-illustration-arm.png"); position: absolute; z-index: 100; + pointer-events: none; } } -- 2.39.5