Snippets/CSS link highlight

How to use Snippets
List of Snippets
CSS link highlight
Language(s): CSS Category:Snippets with CSS#CSS%20link%20highlight
Compatible with: MediaWiki all+ (all)
Category:All snippets#CSS%20link%20highlight

Description

This small CSS code shows redirects and desambiguation pages with a color code.

This helps to visually troubleshoot internal links. It works while reading pages, and with any page editor, or preview mode.

Usage

It should work for all types and versions of MediaWiki.

Code

.mw-disambig {
	background-color:#AFEEEE;
}

.mw-redirect {
	background-color:wheat;
}

Notes

You must be logged in, of course, to see the effect.

See also

Category:All snippets Category:Snippets with CSS