Skip to content

Commit

Permalink
Rollup merge of rust-lang#22097 - cllns:fix-fallback-fonts, r=stevekl…
Browse files Browse the repository at this point in the history
…abnik

The fallback font for a serif font should also be serif, not sans serif.
  • Loading branch information
Manishearth committed Feb 10, 2015
2 parents 415fd95 + 45f6672 commit 4b9a48a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/doc/rust.css
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@
body {
margin: 0 auto;
padding: 0 15px;
font-family: "Source Serif Pro", "Helvetica Neue", Helvetica, Arial, sans-serif;
font-family: "Source Serif Pro", Georgia, Times, "Times New Roman", serif;
font-size: 18px;
color: #333;
line-height: 1.428571429;
Expand Down
2 changes: 1 addition & 1 deletion src/librustdoc/html/static/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@

body {
color: #333;
font: 16px/1.4 "Source Serif Pro", "Helvetica Neue", Helvetica, Arial, sans-serif;
font: 16px/1.4 "Source Serif Pro", Georgia, Times, "Times New Roman", serif;
margin: 0;
position: relative;
padding: 10px 15px 20px 15px;
Expand Down

0 comments on commit 4b9a48a

Please sign in to comment.