Skip to content

Commit

Permalink
Revert "Remove "Droid Sans" from the font stack."
Browse files Browse the repository at this point in the history
This reverts commit 1a24fa0.
Looks like Android < 4 only has 3 fonts installed -
* Droid Sans
* Droid Serif
* Droid Sans Mono

So we do need to keep Droid Sans in.
http://www.granneman.com/webdev/coding/css/fonts-and-formatting/default-fonts/#android
  • Loading branch information
tilomitra committed Aug 29, 2013
1 parent 1a24fa0 commit c143808
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion HISTORY.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ NEXT
grids from breaking in various target environments:

```css
font-family: FreeSans, Arimo, Helvetica, Arial, sans-serif;
font-family: FreeSans, Arimo, "Droid Sans", Helvetica, Arial, sans-serif;
```

This is a *breaking* change. If you are using any non-default font in your project,
Expand Down
4 changes: 3 additions & 1 deletion src/grids/css/grids-core.css
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,12 @@
Arial` to get picked up by the browser, even though Helvetica or Arial
isn't available in that environment.
* Droid Sans: Arch Linux with Chromium 29.x.
* Helvetica, Arial, sans-serif: Common font stack on OSX and Windows.
*/
font-family: FreeSans, Arimo, Helvetica, Arial, sans-serif;
font-family: FreeSans, Arimo, "Droid Sans", Helvetica, Arial, sans-serif;
}

/* Opera as of 12 on Windows needs word-spacing.
Expand Down
4 changes: 3 additions & 1 deletion src/grids/css/grids-r.css
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,12 @@
Arial` to get picked up by the browser, even though Helvetica or Arial
isn't available in that environment.
* Droid Sans: Arch Linux with Chromium 29.x.
* Helvetica, Arial, sans-serif: Common font stack on OSX and Windows.
*/
font-family: FreeSans, Arimo, Helvetica, Arial, sans-serif;
font-family: FreeSans, Arimo, "Droid Sans", Helvetica, Arial, sans-serif;
}

/* Opera as of 12 on Windows needs word-spacing.
Expand Down

0 comments on commit c143808

Please sign in to comment.