From 48190e57087981397fb18a4f6a463facfbb687d2 Mon Sep 17 00:00:00 2001 From: JohnAlbin Date: Thu, 26 Apr 2012 17:47:09 +0800 Subject: [PATCH] Make the reset partial compatible with the establish-baseline() mixin. Fixes #859. --- frameworks/compass/stylesheets/compass/reset/_utilities.scss | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/frameworks/compass/stylesheets/compass/reset/_utilities.scss b/frameworks/compass/stylesheets/compass/reset/_utilities.scss index d9d03f17..d173f3e5 100644 --- a/frameworks/compass/stylesheets/compass/reset/_utilities.scss +++ b/frameworks/compass/stylesheets/compass/reset/_utilities.scss @@ -17,7 +17,9 @@ time, mark, audio, video { @include reset-box-model; @include reset-font; } - body { + // Unlike Eric's original reset, we reset the html element to be compatible + // with the vertical rhythm mixins. + html { @include reset-body; } ol, ul { @include reset-list-style; }