Files
moodle/theme/bootstrapbase/less
Sam Hemelryk e6e58c7a92 MDL-38923 theme_bootstrapbase: pre-integration fixups
* Fixed the way we added the block class to the dock panel in dock.js
* Added a class to the h2 that is used to test dock title width
* Fixed RTL alignment issues as best I could at present
* Fixed overlap of dock + navbar on small screens
* Fixed the docked block width to be constrained to the available space
* Fixed hidden actions on docked blocks

Conflicts:
	theme/bootstrapbase/style/moodle.css
2014-05-19 15:28:00 +12:00
..

About bootstrap in Moodle
-------------------------
If you want to make changes to the .css generated from these .less files then you
need to use a LESS Compiler. Details on specific compilers and how to install them
can be found at http://docs.moodle.org/dev/LESS

At present, recess is the official tool for developers to compile LESS in to CSS, as
other tools give different results in the generated CSS.

Once recess has been installed you can compile and compress the LESS in to CSS using
the following commands from the "theme/bootstrapbase/less" directory:

For the main Moodle styles:

    recess --compile --compress moodle.less > ../style/moodle.css

And for the subset of styles of interest to the TinyMCE editor:

    recess --compile --compress editor.less >  ../style/editor.css

You can add --watch to make sure it updates every time you make a change.

If the compilation is failing and you're not getting any useful error message, try using lessc instead i.e.:

    lessc moodle.less

This is the same tool that's getting called by recess, but the errors seems better if you go direct.

More information
----------------
Additional information about the Moodle bootstrap base theme can be found at
http://docs.moodle.org/dev/Bootstrap