themes-base MDL-16319 Base theme now has an editor sheet and sets a default font size

This commit is contained in:
Sam Hemelryk
2010-10-06 07:38:34 +00:00
parent b475cf4cbc
commit ca194849f0
3 changed files with 3 additions and 2 deletions
+1 -1
View File
@@ -577,7 +577,7 @@ class theme_config {
continue;
}
foreach ($parent_config->editor_sheets as $sheet) {
$sheetfile = "$parent_config->dir/$sheet.css";
$sheetfile = "$parent_config->dir/style/$sheet.css";
if (is_readable($sheetfile)) {
$files['parent_'.$parent_config->name.'_'.$sheet] = $sheetfile;
}
+1 -1
View File
@@ -51,7 +51,7 @@ $THEME->sheets = array(
'user'
);
$THEME->editor_sheets = array();
$THEME->editor_sheets = array('editor');
$THEME->layouts = array(
// Most backwards compatible layout without the blocks - this is the layout used by default
+1
View File
@@ -0,0 +1 @@
body {font:13px/1.231 arial,helvetica,clean,sans-serif;}