Note: You may have to bypass your browser’s cache to see the changes. In addition, after saving a sitewide CSS file such asMediaWiki:Common.css, it will take 5-10 minutes before the changes take effect, even if you clear your cache.
/*Cleans up categories for reconstructed languages.Removes "Reconstructed:Langname/" from the beginnings of linksin the list of entries and the lists of recently addedand oldest entries, replacing it with an asterisk,so that the links look like they would in an entry.*/varnamespaceNumber=mw.config.values.wgNamespaceNumber;/*If in Category namespace, and if there's a catfix, indicatingthat the category belongs to a reconstructed language.*/if(namespaceNumber===14&&$("#catfix").length){$(".mw-category, #recent-additions, #oldest-pages").find("a").html(function(index,content){returncontent.replace(/Reconstruction:[^\/]+\//g,"*");});}