merged from 1.8 :: MDL-9306 :: explanation added for hooks as comma separated lists in Chameleon.

This commit is contained in:
urs_hunkler
2008-01-12 16:31:50 +00:00
parent 0cb3c46479
commit 17be8562d7
+31 -2
View 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>
<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>