From: Geoff Kimball Date: Mon, 15 Feb 2016 19:41:23 +0000 (-0800) Subject: Push deprecation of legacy media query variables to 6.3 X-Git-Tag: v6.2.0~63 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=577c7c1fd14a2a63b52d4d58f21e8f8a11d46e8d;p=thirdparty%2Ffoundation%2Ffoundation-sites.git Push deprecation of legacy media query variables to 6.3 --- diff --git a/docs/pages/media-queries.md b/docs/pages/media-queries.md index 6f2f360dd..959bfe826 100644 --- a/docs/pages/media-queries.md +++ b/docs/pages/media-queries.md @@ -47,7 +47,7 @@ If you're using the CSS version of Foundation, use these media queries to imitat ## Upgrading from Foundation 5 -In Foundation 5, breakpoints were accessed using a series of Sass variables named `$small-up`, `$small-only`, `$medium-only`, and so on. In Foundation 6, this method of writing media queries has been replaced with a dedicated [breakpoint mixin](#the-breakpoint-mixin), described below. **The legacy variables will be removed in Foundation 6.** +In Foundation 5, breakpoints were accessed using a series of Sass variables named `$small-up`, `$small-only`, `$medium-only`, and so on. In Foundation 6, this method of writing media queries has been replaced with a dedicated [breakpoint mixin](#the-breakpoint-mixin), described below. **The legacy variables will be removed in Foundation 6.3.** To upgrade your existing media queries, replace rulesets like this: diff --git a/scss/util/_breakpoint.scss b/scss/util/_breakpoint.scss index a32f0b408..cfa08d436 100644 --- a/scss/util/_breakpoint.scss +++ b/scss/util/_breakpoint.scss @@ -235,7 +235,7 @@ $breakpoint-classes: (small medium large) !default; } // Legacy breakpoint variables -// These will be removed in 6.2 +// These will be removed in 6.3 $small-up: null; $small-only: null; $medium-up: null;