From d84889cb0d9cdc6b33e07f675193f14d7036454f Mon Sep 17 00:00:00 2001 From: s-d-p Date: Mon, 23 Jun 2014 12:30:49 -0400 Subject: [PATCH] Added !global to $class-type Silent classes weren't working in newer versions of Sass (3.2+) because variable scope changed. The intended behavior was repaired by overtly specifying !global. --- csswizardry-grids.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/csswizardry-grids.scss b/csswizardry-grids.scss index f7152af..c847669 100644 --- a/csswizardry-grids.scss +++ b/csswizardry-grids.scss @@ -150,7 +150,7 @@ $breakpoint-has-pull: ('palm', 'lap', 'portable', 'desk')!default; $class-type: unquote("."); @if $use-silent-classes == true{ - $class-type: unquote("%"); + $class-type: unquote("%")!global; }