moodle/theme/chameleon
2009-12-16 18:00:58 +00:00
..
pix MDL-20700 coding style cleanup - cvs keywords removed, closign php tag removed, trailing whitespace cleanup 2009-11-04 08:11:02 +00:00
ui MDL-20700 coding style cleanup - cvs keywords removed, closign php tag removed, trailing whitespace cleanup 2009-11-04 08:11:02 +00:00
config.php MDL-20700 coding style cleanup - cvs keywords removed, closign php tag removed, trailing whitespace cleanup 2009-11-04 08:11:02 +00:00
favicon.ico
footer.html MDL-20700 coding style cleanup - cvs keywords removed, closign php tag removed, trailing whitespace cleanup 2009-11-04 08:11:02 +00:00
header.html lib-cookies MDL-19737 Removed need to include cookies.js on every page 2009-09-17 06:42:54 +00:00
meta.php MDL-12668 - Various themes not respecting theme varaibles 2007-12-20 17:32:08 +00:00
README.html MDL-20700 coding style cleanup - cvs keywords removed, closign php tag removed, trailing whitespace cleanup 2009-11-04 08:11:02 +00:00
styles.php MDL-20204 first batch of major theme changes, some regressions are still there, expect more changes and improvements soon; see tracker for details and list of subtasks 2009-12-16 18:00:58 +00:00
styles_ie6.css merged from 1.9 :: MDL-13329 :: Buttons in the sidblocks looked quite different in the different browsers. Changed several CSS aspects to make them look more similar, specially added IE "hacks". 2008-02-04 21:02:08 +00:00
styles_ie7.css MDL-20700 coding style cleanup - cvs keywords removed, closign php tag removed, trailing whitespace cleanup 2009-11-04 08:11:02 +00:00
temp_user_styles.css
user_styles.css MDL-20700 coding style cleanup - cvs keywords removed, closign php tag removed, trailing whitespace cleanup 2009-11-04 08:11:02 +00:00

<h3>
    Chameleon, the flexible Moodle theme.
</h3>
<p>
    Chameleon is a Moodle theme with an option to interactively change your theme within your browser page.
    You click on an element to change it's style. Please read the
    <a href="http://docs.moodle.org/en/Chameleon" alt="Chameleon Moodle Docs">Chameleon Moodle Docs explanation</a>
    for more information about Chameleon's interactive theme work.
</p>
<p>
    To enable editing you change "$THEME->chameleonenabled = false;" in the config.php file
    in your Chameleon theme folder to true. It is recommended to change "$THEME->chameleonenabled = true;"
    back to false again once you're satisfied with your theme because the editing engine loads several
    extra files into the browser. Therefore the page loading speed is reduced.
</p>

<h4>
    Some basic information:
</h4>

<p>
    If you want to hand code styles you must not write hooks as comma separated lists of elements like
<pre>
td#middle-column div.bt,
div#middle-column div.bt {
    ...
}
</pre>
    in Chameleon themes because the Chameleon engine can't handle these comma lists.
    Please write two separate 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">unodo</a>
    and Andrew Walker, <a href="http://www.altoncollege.ac.uk/">Alton College</a></strong>.
</p>