MediaWiki talk:Common.js
Appearance
Enabling alternating table colors would be nice. The following needs to be added by an admin :
var ts_alternate_row_colors = true;
That's it. Then css selectors tr.odd and tr.even will work and since we have a CSS extension there's no need for editing all the CSS files. The changes could be affected by the following:
<css>
tr.odd { background: color; }
tr.even { background: color; }
</css>