Commit 97469f14 authored by Michael Hansen's avatar Michael Hansen Committed by Chromium LUCI CQ

[Nearby] Prevent cr-lottie from blocking links.

The cr-lottie element was blocking the overlapping "learn more" links
because the "position" attribute was pushing it to the front of the
stack. Using "pointer-events: none" prevents it from interfering.

Fixed: 1138445
Change-Id: I6eed177fd6ce47a598a68594233775d6a2a195cc
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2572700Reviewed-by: default avatarKyle Horimoto <khorimoto@chromium.org>
Commit-Queue: Michael Hansen <hansenmichael@google.com>
Cr-Commit-Position: refs/heads/master@{#833902}
parent 6991410b
...@@ -108,6 +108,7 @@ ...@@ -108,6 +108,7 @@
cr-lottie { cr-lottie {
bottom: 0; bottom: 0;
height: 100px; height: 100px;
pointer-events: none;
position: absolute; position: absolute;
} }
......
...@@ -46,6 +46,7 @@ ...@@ -46,6 +46,7 @@
cr-lottie { cr-lottie {
bottom: 0; bottom: 0;
height: 100px; height: 100px;
pointer-events: none;
position: absolute; position: absolute;
} }
</style> </style>
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment