]> git.mjollnir.org Git - moodle.git/commitdiff
merged from 1.9 :: MDL-9306 :: explanation added for hooks as comma separated lists...
authorurs_hunkler <urs_hunkler>
Sat, 12 Jan 2008 16:32:44 +0000 (16:32 +0000)
committerurs_hunkler <urs_hunkler>
Sat, 12 Jan 2008 16:32:44 +0000 (16:32 +0000)
theme/chameleon/README.html

index 4a723fcebc0283e6bd2262e94034a8b517b566ca..8061f0bb14436702e944798a6f6c3f6dd45cda98 100644 (file)
@@ -1,3 +1,32 @@
-<h3>Chameleon, the flexible Moodle theme.</h3>
+<h3>
+    Chameleon, the flexible Moodle theme.
+</h3>
 
-<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>.</p>
\ No newline at end of file
+<h4>
+    Some basic information:
+</h4>
+
+<p>
+    You must not write hooks as comma separated lists of elements like 
+<pre>
+td#middle-column div.bt, 
+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.
+<pre>
+td#middle-column div.bt {
+    ...
+}
+div#middle-column div.bt {
+    ...
+}
+</pre>
+</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>.
+</p>
\ No newline at end of file