]> git.ipfire.org Git - thirdparty/foundation/foundation-sites.git/commitdiff
chore: remove deprecated responsive embed mixins
authorDaniel Ruf <daniel.ruf@ueberbit.de>
Thu, 22 Mar 2018 13:38:31 +0000 (14:38 +0100)
committerDaniel Ruf <daniel.ruf@ueberbit.de>
Thu, 22 Mar 2018 13:38:31 +0000 (14:38 +0100)
scss/components/_responsive-embed.scss

index 36cb11d0c308a31b5ab494b451915eb07012c2e1..8bcd899dbe0d1c37db0c337cbc209274429cf945 100644 (file)
@@ -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);
-}