Thanks for the feedback. I take your point but do think the new look is a bit cleaner and more modern than the old. What do other people think?Perhaps borders could make a return, or else the programme & time font size & colour could further be improved.
The style of the web interface can be customised through the EXTRA.css file so if you'd like the borders back you can go into Diagnostics and then File Editor. One of the files in the Commonly edited files box at the bottom is: /mod/webif/html/css/EXTRA.css
Open that file and add the following lines to it:
Code:
table.schedule { border-spacing: 2px; }
table.schedule tr > * { border: 1px solid; }
You'll need to be on webif 1.2.1-7 for this to work properly as that's the version that added the schedule class selector to the table.
You can also change the font colour or size in a similar way. So, for example, you can turn the text black and make it 1.1x larger with:
Code:
table.schedule td * { color: black; }
table.schedule td { font-size: 1.1em; }