From 11a6a307738af0d71eec5ec4cba49e189e227f08 Mon Sep 17 00:00:00 2001 From: urs_hunkler Date: Sat, 12 Jan 2008 16:32:44 +0000 Subject: [PATCH] merged from 1.9 :: MDL-9306 :: explanation added for hooks as comma separated lists in Chameleon. --- theme/chameleon/README.html | 33 +++++++++++++++++++++++++++++++-- 1 file changed, 31 insertions(+), 2 deletions(-) diff --git a/theme/chameleon/README.html b/theme/chameleon/README.html index 4a723fcebc0..8061f0bb144 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