Skip to content

Commit

Permalink
Fixes #11741: Don't set headings font-family again, just use inherit
Browse files Browse the repository at this point in the history
  • Loading branch information
mdo committed Dec 8, 2013
1 parent c37b710 commit 1f9bfa8
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion customize.html
Original file line number Diff line number Diff line change
Expand Up @@ -436,7 +436,7 @@ <h3>Headings</h3>
<div class="row">
<div class="col-lg-6">
<label>@headings-font-family</label>
<input type="text" class="form-control" placeholder="@font-family-base" data-var="@headings-font-family">
<input type="text" class="form-control" placeholder="inherit" data-var="@headings-font-family">
<label>@headings-font-weight</label>
<input type="text" class="form-control" placeholder="500" data-var="@headings-font-weight">
</div>
Expand Down
2 changes: 1 addition & 1 deletion dist/css/bootstrap.css
Original file line number Diff line number Diff line change
Expand Up @@ -397,7 +397,7 @@ h6,
.h4,
.h5,
.h6 {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-family: inherit;
font-weight: 500;
line-height: 1.1;
color: inherit;
Expand Down
2 changes: 1 addition & 1 deletion dist/css/bootstrap.min.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs-assets/js/raw-files.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion less/variables.less
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@
@line-height-base: 1.428571429; // 20/14
@line-height-computed: floor(@font-size-base * @line-height-base); // ~20px

@headings-font-family: @font-family-base;
@headings-font-family: inherit;
@headings-font-weight: 500;
@headings-line-height: 1.1;
@headings-color: inherit;
Expand Down

0 comments on commit 1f9bfa8

Please sign in to comment.