As seen on https://en.wikipedia.org/wiki/G%C3%B6lba%C5%9F%C4%B1,_Ad%C4%B1yaman?useskin=minerva&minervanightmode=1 , .plainlinks a.external needs a style friendlier for dark theme.
According to console, the current rule is
@media screen { .plainlinks a.external { background: none !important; padding: 0 !important; } }
where the intent of the class is to override the image that you would normally find on a.external links. Minerva applies it as:
a.external, .mw-parser-output a.external--reference { background-image: url(/w/load.php?modules=skins.minerva.content.styles.images&image=a.external%2C+.mw-parser-output+a.external&variant=reference&format=original&lang=en&skin=minerva&version=1g49l); } a.external, .mw-parser-output a.external { background-position: center right; background-repeat: no-repeat; background-size: 10px; padding-right: 13px; }
whereas Vector 2022 applies it as:
@media screen { .mw-parser-output a.external { background-image: url(/w/skins/Vector/resources/skins.vector.styles/images/link-external-small-ltr-progressive.svg?fb64d); background-position: center right; background-repeat: no-repeat; background-size: 0.857em; padding-right: 1em; } }`
For some reason Minerva's
html.skin-theme-clientpref-night .mw-parser-output [style*="background"] { color: #333; }
is triggering here??? The link somehow has hard colors set? <a style="background: rgb(255, 221, 221)>... shows up in the HTML?