Thanks for the update!
Could you please return the feature to click with a mouse wheel on a Related Grammar point in order to open it in a new tab too?
All you need is to change
<div class="grammar-point__card--related-grammar-new gp-popout" data-gp-id="604">
...
</div>
to
<a href="/grammar_points/604" onclick="return false;"
class="grammar-point__card--related-grammar-new gp-popout" data-gp-id="604">
...
</a>
and add these CSS properties:
.grammar-point__card--related-grammar-new {
...
color: #5f6368;
text-decoration: none;
}
.grammar-point__card--related-grammar-new:hover {
...
color: inherit;
text-decoration: none;
}
It’d be lovely if you could do it! I’m kinda suffering, because my usual one-click way doesn’t work anymore