PolyGerrit: Change font: to font-size and font-family

The reason is because it seem it dosent work very well in
Internet Explorer.

When using font: it showed it as being crossed out. Not sure if this is
Because it is on windows 10 or something else.

Change-Id: Ia27ac65c636aa7753647e9920080afbe9368b2f6
This commit is contained in:
Paladox none 2016-09-18 17:35:40 +00:00
parent a3c7c22c90
commit 2ff75c8d43
1 changed files with 6 additions and 1 deletions

View File

@ -30,6 +30,11 @@ body {
transition: none; /* Override the default Polymer fade-in. */
}
body {
font: 13px -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
/*
* IE has shoddy support for the font shorthand property.
* Work around this using font-size and font-family.
*/
font-size: 13px;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
line-height: 1.4;
}