Fandom Developers Wiki

This script/stylesheet is for PERSONAL use only!

You are free to install this script/stylesheet for yourself, but it is not allowed to be used wiki-wide (e.g., in MediaWiki:ImportJS, MediaWiki:Common.js, MediaWiki:Common.css, MediaWiki:Fandomdesktop.js, MediaWiki:Fandomdesktop.css, or MediaWiki:FandomMobile.css), as it would violate Fandom's Terms of Use.
(See the customization policy)

Modern2010Editor is a stylesheet that makes changes to the 2010 editor layout to be more like the legacy source editor. Specifically, it moves the 'save edit' and 'templates' sections to the right column and completely hides the rail.

Installation

Known issues

  • The edit summary div is near the bottom right of the page in talk pages.
    • This can be fixed by adding the following code to your personal (Special:MyPage/common.js) or global JS page:
if (window.location.search.search("section=new") !== -1) {
	$("#wpSummaryLabel").detach().prependTo(".editOptions");
}
Text above can be found here (edit)