Skip to content

Commit

Permalink
Merge pull request #309 from pnorman/dejavu_fallback
Browse files Browse the repository at this point in the history
Use DejaVu Sans Book as a fallback for bold/italics
  • Loading branch information
gravitystorm committed Jan 14, 2014
2 parents 8a270f7 + 2e58cf6 commit 4a33288
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions style.mss
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ Map {
}

@book-fonts: "DejaVu Sans Book", "unifont Medium";
@bold-fonts: "DejaVu Sans Bold", "unifont Medium";
@oblique-fonts: "DejaVu Sans Oblique", "unifont Medium";
@bold-fonts: "DejaVu Sans Bold", "DejaVu Sans Book", "unifont Medium";
@oblique-fonts: "DejaVu Sans Oblique", "DejaVu Sans Book", "unifont Medium";

@water-color: #b5d0d0;
@land-color: #f2efe9;

2 comments on commit 4a33288

@pnorman
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thinking abou it, would work as a cleaner way to implement falling back?

@book-fonts: "DejaVu Sans Book", "unifont Medium"; 
@bold-fonts: "DejaVu Sans Bold", @book-fonts;

@mrwojo
Copy link
Contributor

@mrwojo mrwojo commented on 4a33288 Jan 29, 2014

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@pnorman carto didn't like that:

  <Font face-name="DejaVu Sans Book, unifont Medium"/>

Please sign in to comment.