mirror of
https://github.com/scratchfoundation/scratch-www.git
synced 2024-11-30 02:56:20 -05:00
Merge pull request #3232 from LLK/paulkaplan-patch-2
Fix click not working on highlighted comment avatar
This commit is contained in:
commit
56a1c5cb29
1 changed files with 7 additions and 0 deletions
|
@ -83,6 +83,13 @@
|
||||||
width: calc(100% + 1rem);
|
width: calc(100% + 1rem);
|
||||||
height: 100%;
|
height: 100%;
|
||||||
content: "";
|
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 {
|
.comment-top-row {
|
||||||
|
|
Loading…
Reference in a new issue