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:
parent
0e2a5d7579
commit
bfb2ebe88b
@ -67,8 +67,8 @@
|
|||||||
|
|
||||||
// Reset the font and vertical alignment.
|
// Reset the font and vertical alignment.
|
||||||
@mixin reset-font {
|
@mixin reset-font {
|
||||||
font-size: 100%;
|
|
||||||
font: inherit;
|
font: inherit;
|
||||||
|
font-size: 100%;
|
||||||
vertical-align: baseline; }
|
vertical-align: baseline; }
|
||||||
|
|
||||||
// Resets the outline when focus.
|
// Resets the outline when focus.
|
||||||
|
@ -14,8 +14,8 @@ time, mark, audio, video {
|
|||||||
margin: 0;
|
margin: 0;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
border: 0;
|
border: 0;
|
||||||
font-size: 100%;
|
|
||||||
font: inherit;
|
font: inherit;
|
||||||
|
font-size: 100%;
|
||||||
vertical-align: baseline; }
|
vertical-align: baseline; }
|
||||||
|
|
||||||
body {
|
body {
|
||||||
|
Loading…
Reference in New Issue
Block a user