]> git.mjollnir.org Git - moodle.git/commitdiff
Some missing styles
authormoodler <moodler>
Wed, 22 Oct 2003 07:51:40 +0000 (07:51 +0000)
committermoodler <moodler>
Wed, 22 Oct 2003 07:51:40 +0000 (07:51 +0000)
theme/cordoroyblue/config.php
theme/cordoroyblue/styles.php

index 660687fc8a008ed977ff905c60ba036a392d25b7..3be95b9430eef1adbdc92818b73615bcbe82d95d 100644 (file)
@@ -7,6 +7,8 @@ $THEME->cellcontent  = "#FFFFFF";  // For areas with text
 $THEME->cellcontent2 = "#B3EAFF";  // Alternate colour
 $THEME->borders      = "#555555";  // Table borders
 $THEME->highlight    = "#AAFFAA";  // 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    = true;       // If true, then this theme must have a "pix" 
                                    // subdirectory that contains copies of all 
index 5384f99e276de35f7fb48b75a8bc2a182872d509..b508f2a9dd4d5b0f5282cdcadb1d789e4de6ac00 100644 (file)
@@ -395,3 +395,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 {
+}
+