This relates to Moodle 1.9.5+ where the gradebook has been substantially improved and tweaked.
It took quite a bit to track down too - I went through all the theme files in 'standard' and our custom theme - there appeared to be nothing related to this. Eventually, with the help and suggestions of colleagues via Twitter (@jonesieboy @timdalton) I was able to uncover the a file that set gradebook css regardless of the theme.
It can be found in: moodle / grade/ report / user / styles.php
If you look around line 26, you'll see:
table.user-grade {
border: 1px solid black;
margin: auto;
padding: 0.25em;
font-size: 0.7em;
}I changed this to:
table.user-grade {
border: 1px solid black;
margin: auto;
padding: 0.25em;
font-size: 1em;
}The key part is the font-size setting - experiment with that until you find what you like

Help




MultiQuote










