mirror of
https://github.com/moodle/moodle.git
synced 2025-03-15 13:10:08 +01:00
Squashed commit of the following: commit 2c2164a7e27bd2b81102251420892386e39edecc Author: Mary Evans <lazydaisy@visible-expression.co.uk> Date: Tue Aug 20 12:59:47 2013 +0100 MDL-40347 theme: Modified upgrade.txt and created bootstrapbase/upgrade.txt. commit 4449975a0f9249785ed152f63786bf7974c1776e Author: Mary Evans <lazydaisy@visible-expression.co.uk> Date: Tue Aug 13 18:42:20 2013 +0100 MDL-40347 grade/report/grader: added RTL css previously in bootstrapbase/less/moodle/grade.less to styles.css commit b0af8f05a411b3dbb1d9c162a0d65c7f9c069c0f Author: Mary Evans <lazydaisy@visible-expression.co.uk> Date: Tue Aug 13 12:42:02 2013 +0100 MDL-40347_M26 grade/report/grader: cleaned up grade/report/grader/styles.css. commit 52627137dc662d47cbfdf023d056baf102f29d8a Author: Mary Evans <lazydaisy@visible-expression.co.uk> Date: Sat Jul 6 17:15:12 2013 +0100 MDL-40347 grade/report/grader: Grade report does not highlight some cells properly. Merged/squashed original commit by Marina Glancy who: - added class 'i123' to each cell in the column - changed JS to highlight the cells with this class instead that cells with the column number - changed grade report css so the .vmarked and .hmarked classes have higher priority for all rows - made cells in 'average range' row td instead of th - little corrections to css: removed background image for some cells with .header css class - MyMobile theme disabled cells highlighting, make sure it disables it in all cases Merged/squashed original commit Mary Evans who: - removed theme/bootstrapbase/less/moodle/grade.less - removed @import "moodle/grade"; from bootstrapbase/less/moodle.less - removed reference to plugins_exclude_sheets for grader in both bootstrapbase/config.php and clean themes/config.php - commented out .hidden from bootstrapbase/less/bootstrap/responsive_utilities.less - made minor changes to grader/style.css
68 lines
1.9 KiB
Plaintext
68 lines
1.9 KiB
Plaintext
// Import the bootstrap variables.
|
|
@import "bootstrap/variables.less";
|
|
|
|
// Old Moodle stuff from base theme.
|
|
// Massive, needs broken up.
|
|
@import "moodle/core";
|
|
@import "moodle/admin";
|
|
@import "moodle/calendar";
|
|
@import "moodle/course";
|
|
@import "moodle/filemanager";
|
|
@import "moodle/message";
|
|
@import "moodle/question";
|
|
@import "moodle/user";
|
|
|
|
|
|
// Upstream Bootstrap.
|
|
@import "bootstrap/bootstrap";
|
|
|
|
// Override Bootstrap defaults.
|
|
@import "moodle/bootstrapoverride";
|
|
|
|
// Set image location.
|
|
@iconSpritePath: ~"[[pix:theme|glyphicons-halflings]]";
|
|
@iconWhiteSpritePath: ~"[[pix:theme|glyphicons-halflings-white]]";
|
|
|
|
// Increase form label width.
|
|
@horizontalComponentOffset: 200px;
|
|
// On Wider screens.
|
|
@horizontalComponentOffset980: 220px;
|
|
@horizontalComponentOffset1200: 265px;
|
|
|
|
// Roll back nameclashes.
|
|
@import "moodle/undo";
|
|
|
|
// Extra padding for fixed nav.
|
|
// Needs to be between bootstrap/bootstrap and
|
|
// bootstrap/responsive.
|
|
body {
|
|
padding-top: 60px;
|
|
}
|
|
|
|
// New Moodle stuff that builds on Bootstrap.
|
|
@import "moodle/blocks";
|
|
@import "moodle/forms";
|
|
@import "moodle/modules";
|
|
@import "moodle/reports";
|
|
@import "moodle/backup-restore";
|
|
@import "moodle/tables";
|
|
@import "moodle/buttons";
|
|
|
|
// Anything below this line is considered expendable,
|
|
// so it doesn't matter if it doesn't show up in ie < 9
|
|
// though at current time (2013-03-13) the whole file is
|
|
// picked up in IE8, and IE9 fails at some point during the
|
|
// responsive section, cutting off the last 400 selectors.
|
|
|
|
// The following responsive imports are copied in
|
|
// from "bootstrap/responsive".
|
|
@import "bootstrap/responsive-utilities.less";
|
|
@import "bootstrap/responsive-1200px-min.less";
|
|
@import "bootstrap/responsive-768px-979px.less";
|
|
@import "bootstrap/responsive-767px-max.less";
|
|
@import "bootstrap/responsive-navbar.less";
|
|
@import "moodle/responsive";
|
|
|
|
@import "moodle/debug";
|
|
@import "moodle/expendable";
|