Commit deeb74e3 authored by Chris Rebert's avatar Chris Rebert
Browse files

Make heading class styles trump heading element styles; fixes #16947

[skip sauce]
[skip validator]
parent a30a5bb9
Showing with 16 additions and 6 deletions
+16 -6
...@@ -21,12 +21,22 @@ h6, .h6 { ...@@ -21,12 +21,22 @@ h6, .h6 {
margin-bottom: $headings-margin-bottom; margin-bottom: $headings-margin-bottom;
} }
h1, .h1 { font-size: $font-size-h1; } h1 { font-size: $font-size-h1; }
h2, .h2 { font-size: $font-size-h2; } h2 { font-size: $font-size-h2; }
h3, .h3 { font-size: $font-size-h3; } h3 { font-size: $font-size-h3; }
h4, .h4 { font-size: $font-size-h4; } h4 { font-size: $font-size-h4; }
h5, .h5 { font-size: $font-size-h5; } h5 { font-size: $font-size-h5; }
h6, .h6 { font-size: $font-size-h6; } h6 { font-size: $font-size-h6; }
// These declarations are kept separate from and placed after
// the previous tag-based declarations so that the classes beat the tags in
// the CSS cascade, and thus <h1 class="h2"> will be styled like an h2.
.h1 { font-size: $font-size-h1; }
.h2 { font-size: $font-size-h2; }
.h3 { font-size: $font-size-h3; }
.h4 { font-size: $font-size-h4; }
.h5 { font-size: $font-size-h5; }
.h6 { font-size: $font-size-h6; }
.lead { .lead {
font-size: $lead-font-size; font-size: $lead-font-size;
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment