MediaWiki

Common.css: Difference between revisions

From Mark Twain in the German Language Press

Created page with "CSS placed here will be applied to all skins: Add color coding for translation changes (article pages): .translationInsert { color: seagreen; } .translationOmission { color: crimson; } .translationChange { color: royalblue; }"
 
mNo edit summary
Line 12: Line 12:
.translationChange {
.translationChange {
     color: royalblue;
     color: royalblue;
}
/* Text styling for .translationtable */
.translationtable td {
vertical-align: top;
}
}

Revision as of 13:44, 3 July 2025

/* CSS placed here will be applied to all skins */

/*Add color coding for translation changes (article pages)*/
.translationInsert {
    color: seagreen;
}
    
.translationOmission {
    color: crimson;
}
    
.translationChange {
    color: royalblue;
}

/* Text styling for .translationtable */
.translationtable td {
	vertical-align: top;
}