Parsoid is outputting a link tag for categories being transcluded (and maybe raw category tags, I don't know). This is causing a negative impact for the CSS that causes navboxes to "collapse" to a single border.
Ex, what is displayed is a double border (mediawiki wiki):
What should be displaying is a single border (mediawiki wiki):
The relevant CSS is
.navbox + .navbox-styles + .navbox { /* Single pixel border between adjacent navboxes */ margin-top: -1px; }
There's no viable way to fix this via CSS. I anticipate this change should be noticeable by visual diffing but perhaps it is being treated as noise, but it will be noticed on en.wp when read views come along. This particular styling is deliberate for at least the past 15 or so years.
See also: On English Wikipedia at least, users aren't supposed to include content categories via templates, but there are other ways to cause this effect I would guess, perhaps including raw categories in the wikitext between navboxes, definitely between amboxes (which should have a similar collapsing going on), maintainence categories (which do get put out by amboxes), and so forth; and I'm pretty sure our wiki is one of the few with this specific practice and so I would guess there are others that allow templates to carry content categories.

