User:Novem Linguae/Scripts/OldDiffColors.js
Appearance
Code that you insert on this page could contain malicious content capable of compromising your account. If you import a script from another page with "importScript", "mw.loader.load", "iusc", or "lusc", take note that this causes you to dynamically load a remote script, which could be changed by others. Editors are responsible for all edits and actions they perform, including by scripts. User scripts are not centrally supported and may malfunction or become inoperable due to software changes. A guide to help you find broken scripts is available. If you are unsure whether code you are adding to this page is safe, you can ask at the appropriate village pump. This code will be executed when previewing this page. |
Documentation for this user script can be added at User:Novem Linguae/Scripts/OldDiffColors. |
// Changes diff colors from yellow for removal and purple for addition, back to yellow for removal and blue for addition.
// Fixes diff "black dot" bug when interacting with some user scripts.
// Changes DiscussionTools published comment color from teal to light blue.
// Forked from code by https://wiki.riteme.site/wiki/User:Hgzh, CC BY-SA 4.0, https://wiki.riteme.site/wiki/Wikipedia:Village_pump_(technical)/Archive_213#Heads-up%3A_Diff_colour
mw.util.addCSS( `
.diff-deletedline {
border-color: #FFE49C;
}
.diff-addedline {
border-color: #A3D3FF;
}
.diff-deletedline .diffchange,
.mw-diff-inline-deleted del, .mw-diff-inline-changed del, .mw-diff-inline-moved del {
background: #FEEEC8;
}
.diff-addedline .diffchange,
.mw-diff-inline-added ins, .mw-diff-inline-changed ins, .mw-diff-inline-moved ins {
background: #D8ECFF;
}
/* fix black dot bug */
a.mw-diff-movedpara-left,
a.mw-diff-movedpara-right {
color: transparent;
}
.ext-discussiontools-init-targetcomment {
background-color: #eaf3ff;
}
.ext-discussiontools-init-publishedcomment {
background-color: #eaf3ff; /* not #d5fdf4 */
}
` );