]> git.mjollnir.org Git - moodle.git/commitdiff
Merged from 1.9 :: Added h1 - h4 fontsizes. Disabled the Chameleon engine by default...
authorurs_hunkler <urs_hunkler>
Tue, 19 Feb 2008 07:53:20 +0000 (07:53 +0000)
committerurs_hunkler <urs_hunkler>
Tue, 19 Feb 2008 07:53:20 +0000 (07:53 +0000)
theme/chameleon/README.html
theme/chameleon/config.php
theme/chameleon/user_styles.css

index 8061f0bb14436702e944798a6f6c3f6dd45cda98..a6a1bb8ed26ef19561351839cfddec6fadc0be8b 100644 (file)
@@ -1,13 +1,25 @@
 <h3>
     Chameleon, the flexible Moodle theme.
 </h3>
+<p>
+    Chameleon is a Moodle theme with an option to interactively change your theme within your browser page. 
+    You click on an element to change it's style. Please read the 
+    <a href="http://docs.moodle.org/en/Chameleon" alt="Chameleon Moodle Docs">Chameleon Moodle Docs explanation</a> 
+    for more information about Chameleon's interactive theme work.
+</p>
+<p>
+    To enable editing you change "$THEME->chameleonenabled = false;" in the config.php file 
+    in your Chameleon theme folder to true. It is recommended to change "$THEME->chameleonenabled = true;" 
+    back to false again once you're satisfied with your theme because the editing engine loads several 
+    extra files into the browser. Therefore the page loading speed is reduced.
+</p>
 
 <h4>
     Some basic information:
 </h4>
 
 <p>
-    You must not write hooks as comma separated lists of elements like 
+    If you want to hand code styles you must not write hooks as comma separated lists of elements like 
 <pre>
 td#middle-column div.bt, 
 div#middle-column div.bt {
@@ -15,7 +27,7 @@ div#middle-column div.bt {
 }
 </pre>
     in Chameleon themes because the Chameleon engine can't handle these comma lists. 
-    Please write two seperate statements instead.
+    Please write two separate statements instead.
 <pre>
 td#middle-column div.bt {
     ...
@@ -27,6 +39,6 @@ div#middle-column div.bt {
 </p>
 
 <p>
-    A Moodle Theme from <strong>Urs Hunkler, <a href="http://www.unodo.de" target="_blank">unodo</a> 
-    and Andrew Walker, <a href="http://www.altoncollege.ac.uk/" title="External link">Alton College</a></strong>.
+    A Moodle Theme from <strong>Urs Hunkler, <a href="http://www.unodo.de">unodo</a> 
+    and Andrew Walker, <a href="http://www.altoncollege.ac.uk/">Alton College</a></strong>.
 </p>
\ No newline at end of file
index 3ed08fce21dd8afd8c98156cb91378e5ba61ff79..923ce19253aa077d3421fd69fb0a5d3e60cd6388 100644 (file)
@@ -127,10 +127,10 @@ $THEME->makenavmenulist = false;
 
 $THEME->chameleonenabled = false;
 
-/// By setting this to false it disables editing of the stylsheets
-/// this saves the overhead of loading chameleon on each pag
-/// viewed by a user who can edit pages. it is recommended to 
-/// set this to false once you're satisfied with your theme.
+/// By setting this to true it enables editing of the stylsheets.
+/// It is recommended to set this to false again once you'r
+/// satisfied with your theme.
+
 
 $THEME->chameleonteachereditenabled = false;
 
@@ -138,7 +138,6 @@ $THEME->chameleonteachereditenabled = false;
 /// will allow teachers on that course to edit the theme. 
 
 
-
 $THEME->resource_mp3player_colors = 
  'bgColour=000000&btnColour=ffffff&btnBorderColour=cccccc&iconColour=000000&'.
  'iconOverColour=00cc00&trackColour=cccccc&handleColour=ffffff&loaderColour=ffffff&'.
index 334fe096557841e219050982c5ddee173d547b46..289017da76fe3f4e7aaa32b8ecc77e86100354a0 100644 (file)
@@ -15,6 +15,19 @@ div#page {
 div.clearer {
   clear: both;
 }
+h1 {
+  font-size: 1.7em;
+}
+
+h2 {
+  font-size: 1.4em;
+}
+h3 {
+  font-size: 1.1em;
+}
+h4 {
+  font-size: 1.0em;
+}
 a:link {
   color: #116699;
 }