Skip to content

Commit

Permalink
rollup merge of rust-lang#22097: cllns/fix-fallback-fonts
Browse files Browse the repository at this point in the history
The fallback font for a serif font should also be serif, not sans serif.
  • Loading branch information
alexcrichton committed Feb 10, 2015
2 parents 7e378ed + 45f6672 commit 5ad52ca
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 5ad52ca

Please sign in to comment.