Page MenuHomeMiraheze

Restrict editing to registed users, and change link colors on enen.miraheze.org
Closed, ResolvedPublic

Description

Here I have a couple of requests that I would like to have made.

Firstly, I would like to have editing and creating pages be restricted to registered members, as a prevention measure against vandalism.

Secondly, I'd like to change the link colors for the wiki to the following:
56D83F (normal, unvisited)
209340 (external, unvisited)
3D4B40 (visited)
638270 (nonexistent, unvisited)
A2BFB1 (nonexistent, visited)
B3D3C4 (active)
which will help it fit with the style of my wiki- it predominantly uses greenish hues, so blues and reds would look pretty jarring. I also don't really want to go the route of having to make my own link templates.

Event Timeline

You can change link colours with CSS on your wiki (do it at https://enen.miraheze.org/wiki/MediaWiki:Common.css):

a {
	color: #56D83F;
}

a:visited {
	color: #3D4B40;
}

a:active {
	color: #B3D3C4;
}

a.new, #p-personal a.new {
	color: #638270;
}

a.new:visited, #p-personal a.new:visited {
	color: #A2BFB1;
}

.mw-body-content a.external {
	color: #209340;
}

Note that if you want to change icon for external link, you have to upload your own version of this file:
https://enen.miraheze.org/w/skins/Vector/images/external-link-ltr-icon.svg

If not everything is working, try to use !important after hex code.

ImBoPhil mentioned this in Unknown Object (Diffusion Commit).Jun 12 2017, 19:35
Void claimed this task.

Link customization must be done at MediaWiki:Common.css. Lev's suggestion should work.

Zppix mentioned this in Unknown Object (Diffusion Commit).Aug 6 2017, 16:53