moodle/theme/chameleon
2009-10-16 03:24:48 +00:00
..
pix MDL-17037 ran all GIF images through gifsicle and PNG through optipng 2009-04-05 23:33:00 +00:00
ui theme MDL-19824 Upgraded deprecated calls 2009-10-16 03:24:48 +00:00
config.php themes MDL-19077: Update deprecated stuff in all theme config.php files. 2009-07-09 02:06:22 +00:00
favicon.ico
footer.html MDL-8323 fixed global $COURSE in chameleon theme footer 2007-01-28 22:29:24 +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 Merged from 1.9 :: Added h1 - h4 fontsizes. Disabled the Chameleon engine by default. Wrote a short hint about the intearactive editing in the README. 2008-02-19 07:53:20 +00:00
styles.php themes: MDL-19077 change how the theme is initialised and CSS is served. 2009-07-01 05:54:26 +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 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
temp_user_styles.css
user_styles.css Merged from 1.9 :: Added h1 - h4 fontsizes. Disabled the Chameleon engine by default. Wrote a short hint about the intearactive editing in the README. 2008-02-19 07:53:20 +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>