Merge branch 'MDL-41152-26' of git://github.com/FMCorz/moodle into MOODLE_26_STABLE

Conflicts:
	theme/bootstrapbase/style/moodle.css
This commit is contained in:
Dan Poltawski
2014-01-13 10:03:47 +08:00
3 changed files with 20 additions and 1 deletions
+1
View File
@@ -48,6 +48,7 @@ body {
@import "moodle/backup-restore";
@import "moodle/tables";
@import "moodle/buttons";
@import "moodle/grade";
// Anything below this line is considered expendable,
// so it doesn't matter if it doesn't show up in ie < 9
@@ -0,0 +1,18 @@
// The class gradetreebox matches the pages displaying the gradebook
// "Categories and items" > "Simple view" and "Full view".
.gradetreebox {
h4 {
// Force back the base font-size to minimise width.
font-size: @baseFontSize;
}
th.cell,
input[type=text] {
// Fallback on the minimum width.
width: auto;
}
input[type=text],
select {
// Remove the bottom margin to gain height.
margin-bottom: 0;
}
}
File diff suppressed because one or more lines are too long