Redlinks do not seem to render properly
copperwater opened this issue · 3 comments
I'm an editor on a wiki that's recently added the darkvector skin. It doesn't look like red links (to nonexistent pages) render properly; they render the same orange as everything else, which makes browsing confusing. It looks like this is due to the !important in darkvector.less
Lines 235 to 240 in e981ba2
which overrides other styles on a
elements. One can hack their way around this by editing MediaWiki:Darkvector.css with a a.new { color:red !important }
or similar, but fighting !important with !important is a bad way to go about it.
I notice that darkvector.less already contains
Lines 248 to 251 in e981ba2
but the !important on all a
elements overrides this.
Yes, this looks like it works now; redlinks are red by default without requiring any additional CSS in the mediawiki namespace.
Great, thank you!