0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-02-24 23:48:13 -05:00

Remove .eot & .ttf fonts

No issue

According to [caniuse](http://caniuse.com/#feat=woff), all the browsers we support (last 2 versions of major browsers) support the `.woff` font format. It's actually what pretty much all browsers will serve if its offered anyway.

This PR removes the .eot and .ttf font formats.

SVG remains as its the base file we use to add new icons & convert into other formats. It is not referenced anywhere.
This commit is contained in:
Paul Adam Davis 2014-11-11 15:23:34 +00:00
parent 9aa011037b
commit d8fc146fc8
3 changed files with 1 additions and 5 deletions

Binary file not shown.

Binary file not shown.

View file

@ -25,11 +25,7 @@
@font-face { @font-face {
font-family: 'GhostIcons'; font-family: 'GhostIcons';
src:url('../fonts/icons.eot'); src:url('../fonts/icons.woff') format('woff');
src:url('../fonts/icons.eot?#iefix') format('embedded-opentype'),
url('../fonts/icons.woff') format('woff'),
url('../fonts/icons.ttf') format('truetype'),
url('../fonts/icons.svg#icons') format('svg');
font-weight: normal; font-weight: normal;
font-style: normal; font-style: normal;
} }