Merge branch '44217-27' of git://github.com/samhemelryk/moodle

This commit is contained in:
Damyon Wiese 2014-02-24 11:13:38 +08:00
commit aeacaa141e
3 changed files with 16 additions and 5 deletions

View file

@ -1,3 +1,5 @@
About bootstrap in Moodle
-------------------------
If you want to make changes to the .css generated from these .less files then you 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 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 can be found at http://docs.moodle.org/dev/LESS
@ -24,6 +26,8 @@ lessc moodle.less
This is the same tool that's getting called by recess, but the errors seems better if you go direct. 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 Additional information about the Moodle bootstrap base theme can be found at
http://docs.moodle.org/dev/Bootstrap http://docs.moodle.org/dev/Bootstrap

View file

@ -29,6 +29,13 @@
@horizontalComponentOffset980: 220px; @horizontalComponentOffset980: 220px;
@horizontalComponentOffset1200: 265px; @horizontalComponentOffset1200: 265px;
// We need to darken the link colour as its contrast is too low for accessibility tests.
// Bootstrap defines - @linkColor: #08c;
// We only need to darken this ever so slightly - so 7%;
// Calculated with => @linkColor: darken(#08c, 7%);
@linkColor: #0070a8;
@linkColorHover: darken(@linkColor, 15%);
// Roll back nameclashes. // Roll back nameclashes.
@import "moodle/undo"; @import "moodle/undo";

File diff suppressed because one or more lines are too long