Minimal-mistakes: Follow menu falls under post links

Created on 8 Apr 2020  ·  4Comments  ·  Source: mmistakes/minimal-mistakes

I use latest version of minimal-mistakes, and when I tap Follow button in mobile devices, Follow menu falls under post links.

follow

Accepted Bug

All 4 comments

I managed to reproduce this on https://blog.kiarash.pro/. But to be honest, your setup looks strange to me in that instead of linking to the actual post, the title links to somewhere else. I'm afraid it's not the intended usage of the "article menu" page.

@iBug That's OK, because Post link is a feature of minimal-mistake.
According to this link.

Looks like a z-indexing issue when I refactored the follow me menu styling a few releases back. I don't personally use link posts so didn't notice the overlap.

Those elements have z-index: 10 which puts them over the follow links. Changing it to something like 5 seems to fix it.

.archive__item a {
    position: relative;
    z-index: 5;
}

If someone wants to submit a PR to fix that would be great. No idea when I'll get to it.

image

Looks like @iBug already took care of the fix in #2478. Thanks.

Was this page helpful?
0 / 5 - 0 ratings