From: moodler Date: Mon, 9 Dec 2002 07:45:45 +0000 (+0000) Subject: Slight changes X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=b27f9a32bcfc95988d3b965f1a7362d042d54c40;p=moodle.git Slight changes --- diff --git a/doc/release.html b/doc/release.html index 3cddb3199c..277891bd8b 100644 --- a/doc/release.html +++ b/doc/release.html @@ -27,7 +27,11 @@ new versions of PHP (4.3.0).
Layout improvements
-
Improved interface when courses are on front page and there is more than one category. +
Cleaned up the display of "side boxes" and added CSS style control over + more elements on the site and course pages. The interface when + courses are on front page and there is more than one category has + been improved (no longer just shows short course names). +
Class interface
diff --git a/index.php b/index.php index c885cd9d5c..59676e586c 100644 --- a/index.php +++ b/index.php @@ -113,7 +113,7 @@ $site->summary .= "
"; } - print_simple_box($site->summary, "", "100%", $THEME->cellheading); + print_simple_box($site->summary, "", "100%", $THEME->cellcontent2); print_spacer(1,$side); echo ""; ?> diff --git a/theme/standard/config.php b/theme/standard/config.php index e6b1f57d3d..0de3ab1503 100644 --- a/theme/standard/config.php +++ b/theme/standard/config.php @@ -4,7 +4,7 @@ $THEME->body = "#FFEECE"; // Main page color $THEME->cellheading = "#FFD991"; // Standard headings of big tables $THEME->cellheading2 = "#FFB62D"; // Highlight headings of tables $THEME->cellcontent = "#FFFFFF"; // For areas with text -$THEME->cellcontent2 = "#FFEECE"; // Alternate colour +$THEME->cellcontent2 = "#FEE6B9"; // Alternate colour $THEME->borders = "#555555"; // Table borders ?>