moodle/theme/bootstrapbase/less
Dan Poltawski 38a6ec6a3a Merge branch 'wip-MDL-39436-master' of git://github.com/marinaglancy/moodle
Conflicts:
	theme/bootstrapbase/style/moodle.css
2013-05-07 15:12:58 +01:00
..
bootstrap MDL-39341 Themes Rename bootstrap to bootstrapbase 2013-04-26 13:01:06 +08:00
moodle Merge branch 'wip-MDL-39436-master' of git://github.com/marinaglancy/moodle 2013-05-07 15:12:58 +01:00
editor.less MDL-39341 Themes Rename bootstrap to bootstrapbase 2013-04-26 13:01:06 +08:00
moodle.less Revert "MDL-39278 - test change to less which is ungenerated" 2013-04-29 14:33:07 +01:00
README Merge branch 'MDL-39278-master' of git://github.com/damyon/moodle 2013-04-26 11:10:09 +02:00

If you want to make changes to the .css generated from these .less files then you
need to install recess (https://github.com/twitter/recess) to compile the .less files,
then run these commands in the bootstrapbase/less/ folder:

recess --compile --compress moodle.less > ../style/moodle.css

You can add --watch to make sure it updates every time you make a change.

And for the subset of styles of interest to the TinyMCE editor:

recess --compile --compress editor.less >  ../style/editor.css

Non-command line options for .less compilation are available, see their github for more info.

If the compilation is failing and you're not getting any useful error message, try using lessc instead i.e.:

lessc moodle.less

This is the same tool that's getting called by recess, but the errors seems better if you go direct.