From 1789e6166887d8ba1f225b67d28cbbda47a653c8 Mon Sep 17 00:00:00 2001 From: moodler Date: Wed, 22 Oct 2003 07:54:37 +0000 Subject: [PATCH] Fixed some missing styles --- theme/garden/config.php | 2 ++ theme/garden/styles.php | 61 +++++++++++++++++++++++++++++++++++++++++ 2 files changed, 63 insertions(+) diff --git a/theme/garden/config.php b/theme/garden/config.php index 516fd2c4d3..b9ae8e41a1 100755 --- a/theme/garden/config.php +++ b/theme/garden/config.php @@ -7,6 +7,8 @@ $THEME->cellcontent = "#eeeedd"; // For areas with text $THEME->cellcontent2 = ""; // Alternate colour $THEME->borders = "#669966"; // Table borders $THEME->highlight = "#ffff99"; // Highlighted text (eg after a search) +$THEME->hidden = "#AAAAAA"; // To color things that are hidden +$THEME->autolink = "#DDDDDD"; // To color auto-generated links (eg glossary) $THEME->custompix = false; // If true, then this theme must have a "pix" // subdirectory that contains copies of all diff --git a/theme/garden/styles.php b/theme/garden/styles.php index 651c568272..07a7475caf 100755 --- a/theme/garden/styles.php +++ b/theme/garden/styles.php @@ -104,9 +104,13 @@ form { } .sideblocklatestnews { + background-image: url(/leftside.jpg); + background-repeat: repeat-y; } .sideblockrecentactivity { + background-image: url(/leftside.jpg); + background-repeat: repeat-y; } .outlineheadingblock { @@ -316,3 +320,60 @@ a.dimmed:hover { .coursename { } +.coursebox { +} + +.courseboxcontent { + border-width: 1px; + border-color: borders?>; + border-style: solid; +} + +.courseboxinfo { +} + +.courseboxsummary { +} + +a.autolink:link { + text-decoration: none; + color: #000000; + background-color: autolink?>; +} + +a.autolink:visited { + text-decoration: none; + color: #000000; + background-color: autolink?>; +} + +a.autolink:hover { + text-decoration: underline; + color: red; +} + +.userinfobox { + border-width: 1px; + border-color: borders?>; + border-style: solid; + margin-bottom: 5px; +} + +.userinfoboxside { +} + +.userinfoboxcontent { +} + +.userinfoboxsummary { +} + +.userinfoboxlinkcontent { +} + +.generaltab { +} + +.generaltabselected { +} + -- 2.39.5