From: urs_hunkler Date: Sat, 12 Jan 2008 16:32:44 +0000 (+0000) Subject: merged from 1.9 :: MDL-9306 :: explanation added for hooks as comma separated lists... X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=11a6a307738af0d71eec5ec4cba49e189e227f08;p=moodle.git merged from 1.9 :: MDL-9306 :: explanation added for hooks as comma separated lists in Chameleon. --- diff --git a/theme/chameleon/README.html b/theme/chameleon/README.html index 4a723fcebc..8061f0bb14 100644 --- a/theme/chameleon/README.html +++ b/theme/chameleon/README.html @@ -1,3 +1,32 @@ -

Chameleon, the flexible Moodle theme.

+

+ Chameleon, the flexible Moodle theme. +

-

A Moodle Theme from Urs Hunkler, unodo and Andrew Walker, Alton College.

\ No newline at end of file +

+ Some basic information: +

+ +

+ You must not write hooks as comma separated lists of elements like +

+td#middle-column div.bt, 
+div#middle-column div.bt {
+    ...
+}
+
+ in Chameleon themes because the Chameleon engine can't handle these comma lists. + Please write two seperate statements instead. +
+td#middle-column div.bt {
+    ...
+}
+div#middle-column div.bt {
+    ...
+}
+
+

+ +

+ A Moodle Theme from Urs Hunkler, unodo + and Andrew Walker, Alton College. +

\ No newline at end of file