mirror of
https://github.com/moodle/moodle.git
synced 2025-08-06 09:26:35 +02:00
MDL-44357 theme: Allow core to compile LESS in PHP
This commit is contained in:
parent
9b8555fbea
commit
d433cf37cd
68 changed files with 10947 additions and 47 deletions
|
@ -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;
|
||||
|
|
4
theme/clean/less/moodle.less
Normal file
4
theme/clean/less/moodle.less
Normal file
|
@ -0,0 +1,4 @@
|
|||
/**
|
||||
* Import all the rules from the parent.
|
||||
*/
|
||||
@import "../../bootstrapbase/less/moodle.less";
|
Loading…
Add table
Add a link
Reference in a new issue