mirror of
https://github.com/moodle/moodle.git
synced 2025-01-19 06:18:28 +01:00
99cca8470e
- fixed user styles in base theme - added new divs for better control on user profile and user index pages - reduced data on course user profiles down to minimum - removed user/tabs.php completely and all uses of it - changed default user icon pix to something very bland (bye bye smiley cake)
21 lines
415 B
PHP
21 lines
415 B
PHP
<?php
|
|
|
|
$THEME->name = 'standard';
|
|
$THEME->parents = array('base');
|
|
$THEME->sheets = array(
|
|
'core', /** Must come first**/
|
|
'admin',
|
|
'blocks',
|
|
'calendar',
|
|
'course',
|
|
'user',
|
|
'dock',
|
|
'grade',
|
|
'message',
|
|
'modules',
|
|
'question',
|
|
'css3' /** Sets up CSS 3 + browser specific styles **/
|
|
);
|
|
$THEME->enable_dock = true;
|
|
$THEME->javascripts_footer = array('navigation');
|