Note : après avoir enregistré la page, vous devrez forcer le rechargement complet du cache de votre navigateur pour voir les changements.

Mozilla / Firefox / Konqueror / Safari : maintenez la touche Majuscule (Shift) en cliquant sur le bouton Actualiser (Reload) ou pressez Maj-Ctrl-R (Cmd-R sur Apple Mac) ;

Chrome / Internet Explorer / Opera : maintenez la touche Ctrl en cliquant sur le bouton Actualiser ou pressez Ctrl-F5.
/** Liste de contributions **/

/* ORES - changement couleurs modifications suspectes ET non révoquées */
.damaging.mw-changeslist-damaging-likelybad:not(.mw-tag-mw-reverted) { background-color: gold; } /* ORES probablement mauvais */
.damaging.mw-changeslist-damaging-verylikelybad:not(.mw-tag-mw-reverted) { background-color: coral; } /* ORES très probablement mauvais */

/* Surlignage beige clair modifications révoquées */
/* Écrase les éventuels surlignages ORES (la modification étant de toute façon révoquée) */
body.mw-special-Contributions .mw-tag-mw-reverted,
body.mw-special-Contributions .damaging.ores-highlight.mw-tag-mw-reverted
{
	background-color: bisque;
}
/** Fin surlignage liste de contributions **/



/** Historiques/LdS - hachurage versions révoquées **/

/* Défaut - Hachurage gris clair */
/* Visible uniquement si le gadget DeluxeHistory n'est pas utilisé */
#pagehistory li.mw-tag-mw-reverted,
body.mw-special-Watchlist .mw-changeslist-edit.mw-tag-mw-reverted td.mw-enhanced-rc-nested,
body.mw-special-Watchlist .mw-changeslist-edit.mw-tag-mw-reverted td.mw-changeslist-line-inner
{
	background: repeating-linear-gradient(
		-45deg,
        white,
        white 5px,
        gainsboro 5px,
        gainsboro 10px
	);
}

/* DeluxeHistory - hachurage IP */
#pagehistory li.mw-tag-mw-reverted.UserIs-IP,
body.mw-special-Watchlist .mw-changeslist-edit.mw-tag-mw-reverted td.UserIs-IP
{
	background: repeating-linear-gradient(
		-45deg,
        #FFCCCC,
        #FFCCCC 7px,
        whitesmoke 7px,
        whitesmoke 10px
	);
}

/* DeluxeHistory - hachurage utilisateurs */
#pagehistory li.mw-tag-mw-reverted.UserIs-User,
body.mw-special-Watchlist .mw-changeslist-edit.mw-tag-mw-reverted td.UserIs-User
{
    background: repeating-linear-gradient(
      -45deg,
      #DBDBFF,
      #DBDBFF 7px,
      whitesmoke 7px,
      whitesmoke 10px
   );
}

/* DeluxeHistory - hachurage sysops */
#pagehistory li.mw-tag-mw-reverted.UserIs-Sysop,
body.mw-special-Watchlist .mw-changeslist-edit.mw-tag-mw-reverted td.UserIs-Sysop
{
    background: repeating-linear-gradient(
        -45deg,
        #FFFF99,
        #FFFF99 7px,
        gainsboro 7px,
        gainsboro 10px
    );
}

/* DeluxeHistory - hachurage soi-même */
#pagehistory li.mw-tag-mw-reverted.UserIs-Self,
body.mw-special-Watchlist .mw-changeslist-edit.mw-tag-mw-reverted td.UserIs-Self
{
    background: repeating-linear-gradient(
        -45deg,
        #FFD89B,
        #FFD89B 7px,
        whitesmoke 7px,
        whitesmoke 10px
    );
}

/* DeluxeHistory - hachurage bot */
#pagehistory li.mw-tag-mw-reverted.UserIs-Bot,
body.mw-special-Watchlist .mw-changeslist-edit.mw-tag-mw-reverted td.UserIs-Bot
{
    background: repeating-linear-gradient(
        -45deg,
        #C6FFB3,
        #C6FFB3 7px,
        lightgray 7px,
        lightgray 10px
    );
}
/** Fin hachurage historiques/LdS **/