Conflicts:
theme/bootstrap/style/generated.css
theme/bootstrap/style/moodle.css
theme/bootstrapbase/less/moodle/recess.txt
theme/bootstrapbase/style/generated.css
$THEME->doctype = 'html5';
$THEME->yuicssmodules = array();
-$THEME->name = 'bootstrap';
+$THEME->name = 'bootstrapbase';
$THEME->parents = array('');
- $THEME->sheets = array('generated');
+ $THEME->sheets = array('moodle');
$THEME->supportscssoptimisation = false;
$THEME->editor_sheets = array('editor');
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 bootstrap/less/ folder:
+then run these commands in the bootstrapbase/less/ folder:
- recess --compile --compress moodle.less > ../style/generated.css
+ recess --compile --compress moodle.less > ../style/moodle.css
You can add --watch to make sure it updates every time you make a change.