From 4551f7f8e28de1ccfc635ed6680e8b0810069316 Mon Sep 17 00:00:00 2001 From: Sam Richard Date: Sun, 4 Nov 2012 14:04:35 -0800 Subject: [PATCH] Fix for a bug in Compass Normalize. Will be removed when Compass Normalize is fixed --- sass/partials/global/_base.scss | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/sass/partials/global/_base.scss b/sass/partials/global/_base.scss index c2288c1..7c91869 100644 --- a/sass/partials/global/_base.scss +++ b/sass/partials/global/_base.scss @@ -6,18 +6,21 @@ // imports and imports for variables, functions, mixins, and extendables. //////////////////////// +// Currently, there is a bug in Compass Normalize requiring us to have this variable before all of our imports and out of order. There is a pull request in to fix this, so you won't need it in the future, but for the time being, we need this. +$legacy-support-for-mozilla: true; + //////////////////////// // Compass Imports //////////////////////// @import "compass"; -@import "compass/reset"; +//@import "compass/reset"; //////////////////////// // Compass Extensions // // Aurora includes Toolkit, Breakpoint, Respond-to, Sassy Buttons, and SingularityGS //////////////////////// -//@import 'normalize'; +@import 'normalize'; @import 'susy'; //@import 'singularity'; @import 'respond-to';