MDL-44357 theme: Allow core to compile LESS in PHP

This commit is contained in:
Frederic Massart 2014-02-19 17:02:11 +08:00
parent 9b8555fbea
commit d433cf37cd
68 changed files with 10947 additions and 47 deletions

View file

@ -39,6 +39,8 @@ $THEME->name = 'clean';
$THEME->doctype = 'html5';
$THEME->parents = array('bootstrapbase');
$THEME->sheets = array('custom');
$THEME->lessfile = 'moodle';
$THEME->parents_exclude_sheets_when_lessfile = array('bootstrapbase' => array('moodle'));
$THEME->supportscssoptimisation = false;
$THEME->yuicssmodules = array();
$THEME->enable_dock = true;

View file

@ -0,0 +1,4 @@
/**
* Import all the rules from the parent.
*/
@import "../../bootstrapbase/less/moodle.less";