From: Daniel Ruf Date: Thu, 22 Mar 2018 13:38:31 +0000 (+0100) Subject: chore: remove deprecated responsive embed mixins X-Git-Tag: v6.6.0~3^2~265^2~1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2c459d11c;p=thirdparty%2Ffoundation%2Ffoundation-sites.git chore: remove deprecated responsive embed mixins --- diff --git a/scss/components/_responsive-embed.scss b/scss/components/_responsive-embed.scss index 36cb11d0c..8bcd899db 100644 --- a/scss/components/_responsive-embed.scss +++ b/scss/components/_responsive-embed.scss @@ -17,9 +17,6 @@ $responsive-embed-ratios: ( widescreen: 16 by 9, ) !default; -// WARNING: Will be removed in version 6.4 -$responsive-embed-ratio: default; - /// Creates a responsive embed container. /// @param {String|List} $ratio [default] - Ratio of the container. Can be a key from the `$responsive-embed-ratios` map or a list formatted as `x by y`. @mixin responsive-embed($ratio: default) { @@ -58,13 +55,3 @@ $responsive-embed-ratio: default; } } } - -@mixin foundation-flex-video { - @warn 'This mixin is being replaced by foundation-responsive-embed(). foundation-flex-video() will be removed in Foundation 6.4.'; - @include foundation-responsive-embed; -} - -@mixin flex-video($ratio: $responsive-embed-ratio) { - @warn 'This mixin is being replaced by responsive-embed(). flex-video() will be removed in Foundation 6.4.'; - @include responsive-embed($ratio); -}