]> git.mjollnir.org Git - moodle.git/commitdiff
Fixed some missing styles
authormoodler <moodler>
Wed, 22 Oct 2003 07:54:37 +0000 (07:54 +0000)
committermoodler <moodler>
Wed, 22 Oct 2003 07:54:37 +0000 (07:54 +0000)
theme/garden/config.php
theme/garden/styles.php

index 516fd2c4d3d65a27b85e2ed5ec85833eb08076f1..b9ae8e41a1fb338ba26cf337a677918eeee80f9c 100755 (executable)
@@ -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 
index 651c568272fcb4a1542c65dbd213622bf23363bf..07a7475cafa3e605142a1789b4f7b5d82358d02c 100755 (executable)
@@ -104,9 +104,13 @@ form {
 }
 
 .sideblocklatestnews {
+    background-image: url(<?PHP echo "$themeurl"?>/leftside.jpg);
+    background-repeat: repeat-y;
 }
 
 .sideblockrecentactivity {
+    background-image: url(<?PHP echo "$themeurl"?>/leftside.jpg);
+    background-repeat: repeat-y;
 }
 
 .outlineheadingblock {
@@ -316,3 +320,60 @@ a.dimmed:hover {
 .coursename {
 }
 
+.coursebox {
+}
+
+.courseboxcontent {
+    border-width: 1px;
+    border-color: <?PHP echo $THEME->borders?>;
+    border-style: solid;
+}
+
+.courseboxinfo {
+}
+
+.courseboxsummary {
+}
+
+a.autolink:link {
+    text-decoration: none;
+    color: #000000;
+    background-color: <?PHP echo $THEME->autolink?>;
+}
+
+a.autolink:visited {
+    text-decoration: none;
+    color: #000000;
+    background-color: <?PHP echo $THEME->autolink?>;
+}
+
+a.autolink:hover {
+    text-decoration: underline;
+    color: red;
+}
+
+.userinfobox {
+    border-width: 1px;
+    border-color: <?PHP echo $THEME->borders?>;
+    border-style: solid;
+    margin-bottom: 5px;
+}
+
+.userinfoboxside {
+}
+
+.userinfoboxcontent {
+}
+
+.userinfoboxsummary {
+}
+
+.userinfoboxlinkcontent {
+}
+
+.generaltab {
+}
+
+.generaltabselected {
+}
+