MDL-40321 theme_bootstrapbase: Combine reset into existing overrides file

This commit is contained in:
Damyon Wiese
2013-08-27 10:17:23 +08:00
parent 37bb910633
commit 70512ebdfc
4 changed files with 9 additions and 13 deletions
-3
View File
@@ -33,9 +33,6 @@
// Roll back nameclashes.
@import "moodle/undo";
// Roll back resets.
@import "moodle/reset";
// Extra padding for fixed nav.
// Needs to be between bootstrap/bootstrap and
// bootstrap/responsive.
+8 -1
View File
@@ -5,7 +5,7 @@
* rules defined in Bootstrap.
*/
/** Headings **/
// Headings.
h1 { font-size: round(@baseFontSize * 2.30); } // ~32px
h2 { font-size: round(@baseFontSize * 2.00); } // ~28px
h3 { font-size: round(@baseFontSize * 1.70); } // ~24px
@@ -17,3 +17,10 @@ h1 small { font-size: round(@baseFontSize * 1.70); } // ~24px
h2 small { font-size: round(@baseFontSize * 1.40); } // ~20px
h3 small { font-size: round(@baseFontSize * 1.15); } // ~16px
h4 small { font-size: round(@baseFontSize * 0.85); } // ~12px
// Printing.
@media print {
a[href]:after {
content: "";
}
}
@@ -1,8 +0,0 @@
// Printing
// -------------------------
@media print {
a[href]:after {
content: "";
}
}
File diff suppressed because one or more lines are too long