]> git.mjollnir.org Git - moodle.git/commitdiff
Merged from 1.9 :: Chameleon restrictions info added.
authorurs_hunkler <urs_hunkler>
Sun, 3 Feb 2008 17:07:59 +0000 (17:07 +0000)
committerurs_hunkler <urs_hunkler>
Sun, 3 Feb 2008 17:07:59 +0000 (17:07 +0000)
theme/custom_corners/README.html

index 36a53016c9faeadf451891d8924dd122ba1330e3..b1d673881213439f951445952ef5cf450c2a4159 100644 (file)
@@ -4,4 +4,29 @@
 
 <p>The Moodle implementation does not use JavaScript as describd in Roger Johansson's documentation. Moodle adds all neccessary divs to the pages when the option "$THEME->customcorners = true;" is set in config.php.</p>
 
+<h4>
+    Some basic information:
+</h4>
+
+<p>
+    Custom_corners uses the Chameleon engine. 
+    You must <strong>not</strong> write hooks as comma separated lists of elements like 
+<pre>
+td#middle-column div.bt, 
+div#middle-column div.bt {
+    ...
+}
+</pre>
+    in Chameleon enhanced 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></strong>.</p>
\ No newline at end of file