David Scotson
David Scotson
Looks like they've figured out what they're going to do in Bootstrap for RTL: https://github.com/twbs/bootstrap/tree/rtl_via_css_flip/less Basically they output the CSS as normal and then call another node module that parses...
Basically every .less file in the less/moodle directory contains a long list of workarounds for core Moodle issues. Some of those have comments, and nearly every one should have the...
We should override this renderer: https://github.com/moodle/moodle/blob/master/lib/outputrenderers.php#L554-L562 So that instead of outputting this: ``` stuff ``` It outputs this: ``` stuff ``` There's a tiny chance this might break some overspecified...
I just noticed a typo in one of the less files. I thought this would have triggered an error on compile, though maybe it can only notice certain types of...
When using panels other than the default, the custom bootswatch settings (the one's based on Cerulean) seem to be interfering with the color of the title text.
There's still a bunch of them. This will show them: git grep '#[a-fA-F0-9]{3,6}' -- less/moodle/** Some are more important than others, some need the whole CSS replaced with something better.
I was thinking about customisation via options, and it struck me that for some things, just cutting and pasting some CSS into the customcss box might be the way forward...
We currently suffer from this bug: https://tracker.moodle.org/browse/MDL-44036 My ideal solution would be to shift the edit button somewhere and go back to having the breadcrumb span the whole width of...
Mostly a reminder to myself: Bootstrap has deprecated .hide for .hidden, .hide is one of our nameclashes. So we don't use it, and if Bootstrap have stopped using it in...