mirror of
https://github.com/moodle/moodle.git
synced 2025-08-06 17:36:38 +02:00
MDL-44357 theme_more: New customizable theme
AMOS BEGIN CPY [choosereadme,theme_clean],[choosereadme,theme_more] CPY [configtitle,theme_clean],[configtitle,theme_more] CPY [customcss,theme_clean],[customcss,theme_more] CPY [customcssdesc,theme_clean],[customcssdesc,theme_more] CPY [footnote,theme_clean],[footnote,theme_more] CPY [footnotedesc,theme_clean],[footnotedesc,theme_more] CPY [invert,theme_clean],[invert,theme_more] CPY [invertdesc,theme_clean],[invertdesc,theme_more] CPY [logo,theme_clean],[logo,theme_more] CPY [logodesc,theme_clean],[logodesc,theme_more] CPY [pluginname,theme_clean],[pluginname,theme_more] CPY [region-side-post,theme_clean],[region-side-post,theme_more] CPY [region-side-pre,theme_clean],[region-side-pre,theme_more] AMOS END
This commit is contained in:
parent
08823e5f03
commit
833511a005
12 changed files with 328 additions and 4 deletions
|
@ -39,8 +39,6 @@ $THEME->name = 'clean';
|
|||
$THEME->doctype = 'html5';
|
||||
$THEME->parents = array('bootstrapbase');
|
||||
$THEME->sheets = array('custom');
|
||||
$THEME->lessfile = 'moodle';
|
||||
$THEME->parents_exclude_sheets = array('bootstrapbase' => array('moodle'));
|
||||
$THEME->supportscssoptimisation = false;
|
||||
$THEME->yuicssmodules = array();
|
||||
$THEME->enable_dock = true;
|
||||
|
@ -52,4 +50,4 @@ $THEME->csspostprocess = 'theme_clean_process_css';
|
|||
$THEME->blockrtlmanipulations = array(
|
||||
'side-pre' => 'side-post',
|
||||
'side-post' => 'side-pre'
|
||||
);
|
||||
);
|
||||
|
|
|
@ -1,4 +0,0 @@
|
|||
/**
|
||||
* Import all the rules from the parent.
|
||||
*/
|
||||
@import "../../bootstrapbase/less/moodle.less";
|
|
@ -116,6 +116,9 @@ function theme_clean_set_customcss($css, $customcss) {
|
|||
/**
|
||||
* Returns an object containing HTML for the areas affected by settings.
|
||||
*
|
||||
* Do not add Clean specific logic in here, child themes should be able to
|
||||
* rely on that function just by declaring settings with similar names.
|
||||
*
|
||||
* @param renderer_base $output Pass in $OUTPUT.
|
||||
* @param moodle_page $page Pass in $PAGE.
|
||||
* @return stdClass An object with the following properties:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue