moodle/theme/chameleon
Francois Marier 6800d78e06 Drift between CVS and git
- large deletions
- lucene updates
- error() => print_error()
- NO_MOODLE_COOKIES define
- various other things
2008-06-25 17:31:23 +00:00
..
pix MDL-14679 fixed references to mod.html 2008-06-01 19:09:13 +00:00
ui "MDL-14129, fix print_error" 2008-06-15 10:13:30 +00:00
config.php 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
favicon.ico New Chameleon theme from 2006-01-31 06:05:33 +00:00
footer.html MDL-8323 fixed global $COURSE in chameleon theme footer 2007-01-28 22:29:24 +00:00
header.html merged from 1.9 :: added missing "if ($heading)" to suppress empty page header. 2007-11-11 09:31:41 +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 Drift between CVS and git 2008-06-25 17:31:23 +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 New Chameleon theme from 2006-01-31 06:05:33 +00:00
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>