From: urs_hunkler Date: Sun, 3 Feb 2008 17:07:59 +0000 (+0000) Subject: Merged from 1.9 :: Chameleon restrictions info added. X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=1e2e2ad8117667fa52d21549c904df4591e1bad6;p=moodle.git Merged from 1.9 :: Chameleon restrictions info added. --- diff --git a/theme/custom_corners/README.html b/theme/custom_corners/README.html index 36a53016c9..b1d6738812 100644 --- a/theme/custom_corners/README.html +++ b/theme/custom_corners/README.html @@ -4,4 +4,29 @@

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.

+

+ Some basic information: +

+ +

+ Custom_corners uses the Chameleon engine. + You must not write hooks as comma separated lists of elements like +

+td#middle-column div.bt, 
+div#middle-column div.bt {
+    ...
+}
+
+ in Chameleon enhanced 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.

\ No newline at end of file