Tabs don't become 'active' in user profile

The tabs along the top of meta.discourse.org/my/preferences don’t get highlighted when active. It looks like the .active class has been applied, so this is likely a CSS issue.

4 Likes

css expects active to be on parent li, not on the a itself.

4 Likes

Should be fixed by:

https://github.com/discourse/discourse/commit/a2fdd4089c51588fdf93bc7863801e4ad9c73172

6 Likes

Ah yes, this was me. I was trying to make the nav pills more consistent so they can be styled all at once in a theme (styling both the li.active and a.active causes some specificity issues). Will revisit this part.

5 Likes