Fix ordering of font properties in reset-font for FF's benefit.

Firefox gets persnickety about how regular CSS properties and shorthand properties
interact, specifically specifying a shorthand version after the regular property
causes the regular property to be overriden. Closes GH-852.
This commit is contained in:
Matt Farmer 2012-04-19 15:47:27 -04:00
parent 0e2a5d7579
commit bfb2ebe88b
2 changed files with 2 additions and 2 deletions

View File

@ -67,8 +67,8 @@
// Reset the font and vertical alignment.
@mixin reset-font {
font-size: 100%;
font: inherit;
font-size: 100%;
vertical-align: baseline; }
// Resets the outline when focus.

View File

@ -14,8 +14,8 @@ time, mark, audio, video {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font: inherit;
font-size: 100%;
vertical-align: baseline; }
body {