Merge pull request #3232 from LLK/paulkaplan-patch-2

Fix click not working on highlighted comment avatar
This commit is contained in:
Paul Kaplan 2019-08-12 08:46:12 -04:00 committed by GitHub
commit 56a1c5cb29
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -83,6 +83,13 @@
width: calc(100% + 1rem);
height: 100%;
content: "";
/*
Because this :before is absolutely positioned, it will eat clicks
from non-absolute elements after it (like the author link).
Prevent this by explicitly disabling pointer events on this background element.
*/
pointer-events: none;
}
.comment-top-row {