diff options
| author | Mark Otto <[email protected]> | 2012-03-10 11:27:07 -0800 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2012-03-10 11:27:07 -0800 |
| commit | f4e879a93612e8ec121985f075812f63c0d4f355 (patch) | |
| tree | 75ab2b39449b8d9a7d5601ac3cace33fa38c87bf /less/variables.less | |
| parent | c414e57dccf0d0177f42df10d2f36f79581563d6 (diff) | |
| download | bootstrap-f4e879a93612e8ec121985f075812f63c0d4f355.tar.xz bootstrap-f4e879a93612e8ec121985f075812f63c0d4f355.zip | |
fix the font-family var by using inherit instead of empty string, fix font-weight in docs for jumbotron
Diffstat (limited to 'less/variables.less')
| -rw-r--r-- | less/variables.less | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/less/variables.less b/less/variables.less index 21585cb6d..a88288773 100644 --- a/less/variables.less +++ b/less/variables.less @@ -50,9 +50,9 @@ @baseLineHeight: 18px; @altFontFamily: Georgia, "Times New Roman", Times, serif; -@headingsFontFamily: ''; // empty to use BS default, @baseFontFamily -@headingsFontWeight: normal; // instead of browser default, bold -@headingsColor: ''; // empty to use BS default, @textColor +@headingsFontFamily: inherit; // empty to use BS default, @baseFontFamily +@headingsFontWeight: normal; // instead of browser default, bold +@headingsColor: inherit; // empty to use BS default, @textColor // Tables |
