https://en.wikipedia.org/wiki/User:PrimeHunter/timeless.css has an unclosed comment:
/* .foo {display:none;}There is no warning when it's edited but in the given skin it prevents application of some sitewide CSS in the MediaWiki namespace.
I suggest this is avoided by acting like the comment had been closed at the end. As an inferior alternative, at least display a warning when the CSS is edited.
The rest of this report is just an example of the effect at enwiki.
I found the issue after a post where it was the user's common.css at
https://en.wikipedia.org/w/index.php?title=Wikipedia:Village_pump_(technical)&oldid=1279903270#If_IP_and_similar_templates_saying_I_am_not_logged_in%3F
https://en.wikipedia.org/wiki/Template:If_IP outputs wikitext starting with this on the template page itself:
<span class="anonymous-show">You are not logged in.</span><span class="user-show">You are currently logged in.</span>
In Vector where the unclosed comment is not loaded it correctly displays "You are currently logged in."
In Timeless it displays "You are not logged in." for me.
The code works by using sitewide CSS rules for the classes.
https://en.wikipedia.org/wiki/MediaWiki:Common.css has this rule which is apparently still applied:
.user-show {
display: none;
}https://en.wikipedia.org/wiki/MediaWiki:Group-user.css has these rules which are apparently not applied because of the unclosed comment:
.anonymous-show {
display: none !important;
}
span.user-show,
small.user-show {
display: inline !important;
}