From 8679a926f19f0aa121c001c08272fab19e0babe8 Mon Sep 17 00:00:00 2001 From: John Debs Date: Thu, 20 Aug 2009 11:34:26 -0400 Subject: [PATCH] [Compass Core] Fixes to +sticky-footer mixin for IE6. Added two rules (':height auto !important' and ':height 100%') to the !root_selector of the sticky-footer mixin so that it also works with IE6. Tested and working with Firefox 3.5, Safari 4, Chrome 3, and IE6. --- .../compass/stylesheets/compass/layout/_sticky_footer.sass | 2 ++ 1 file changed, 2 insertions(+) diff --git a/frameworks/compass/stylesheets/compass/layout/_sticky_footer.sass b/frameworks/compass/stylesheets/compass/layout/_sticky_footer.sass index 8b8c4b04..cca39ea6 100644 --- a/frameworks/compass/stylesheets/compass/layout/_sticky_footer.sass +++ b/frameworks/compass/stylesheets/compass/layout/_sticky_footer.sass @@ -8,6 +8,8 @@ :height 100% #{!root_selector} :min-height 100% + :height auto !important + :height 100% :margin-bottom= -!footer_height #{!root_footer_selector} :height= !footer_height