From 1e2e2ad8117667fa52d21549c904df4591e1bad6 Mon Sep 17 00:00:00 2001
From: urs_hunkler 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.
+ Custom_corners uses the Chameleon engine.
+ You must not write hooks as comma separated lists of elements like
+
+ Some basic information:
+
+
+
+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 -- 2.39.5