From cfb5bd3a24381bced6da1760e9ce9088f5358fbd Mon Sep 17 00:00:00 2001 From: Chris Eppstein Date: Tue, 1 Jun 2010 08:55:36 -0700 Subject: [PATCH] [Blueprint] Fix a regression in the scaffolding. --- .../blueprint/stylesheets/blueprint/_scaffolding.scss | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/frameworks/blueprint/stylesheets/blueprint/_scaffolding.scss b/frameworks/blueprint/stylesheets/blueprint/_scaffolding.scss index b0caa9b0..7ecd84cb 100644 --- a/frameworks/blueprint/stylesheets/blueprint/_scaffolding.scss +++ b/frameworks/blueprint/stylesheets/blueprint/_scaffolding.scss @@ -15,13 +15,12 @@ // +blueprint-scaffolding("body#page-1, body#page-2, body.a-special-page-type") // Alternatively, you can use the +blueprint-scaffolding-body and +blueprint-scaffolding-defaults // mixins to construct your own semantic style rules. - -@mixin blueprint-scaffolding($nested: false) { - @if $nested { - @include blueprint-scaffolding-defaults; - } @else { - body { @include blueprint-scaffolding-defaults; } +// @deprecated It is no longer necessary to pass any argument. +@mixin blueprint-scaffolding($nested: deprecated) { + @if $nested != deprecated { + @warn "It is no longer necessary to pass any argument to the blueprint-scaffolding mixin." } + @include blueprint-scaffolding-defaults; } // The styles this mixin provides were deprecated in Blueprint 0.9 and is no