]> git.ipfire.org Git - thirdparty/foundation/foundation-sites.git/commitdiff
Removed flex prototypes as we will take that up in seprate PR
authorharry <harmanmanchanda182@gmail.com>
Mon, 6 Feb 2017 17:48:57 +0000 (23:18 +0530)
committerharry <harmanmanchanda182@gmail.com>
Mon, 6 Feb 2017 17:48:57 +0000 (23:18 +0530)
assets/foundation-flex-prototype.scss [deleted file]
scss/prototype/_display.scss

diff --git a/assets/foundation-flex-prototype.scss b/assets/foundation-flex-prototype.scss
deleted file mode 100644 (file)
index d13ee2c..0000000
+++ /dev/null
@@ -1,3 +0,0 @@
-@import '../scss/foundation';
-
-@include foundation-everything($flex: true, $prototype: true);
index c86e94c93cb31a18f3988c9c11245a938b81ba2f..39e4d643cdfd959787f4f780b13f5706a29c581c 100644 (file)
@@ -16,25 +16,12 @@ $prototype-display-classes: (
   none, inline, inline-block, block, table, table-cell
 ) !default;
 
-/// Map containing all the `display-flex` classes
-/// @type Map
-$prototype-display-flex-classes: (
-  flex, inline-flex
-) !default;
-
 @mixin foundation-prototype-display {
   @each $display in $prototype-display-classes {
     .display-#{$display} {
       display: $display !important;
     }
   }
-  @if $global-flexbox {
-    @each $display-flex in $prototype-display-flex-classes {
-      .display-#{$display-flex} {
-        display: $display-flex !important;
-      }
-    }
-  }
 
   @if ($prototype-display-breakpoints) {
     // Loop through Responsive Breakpoints
@@ -47,15 +34,6 @@ $prototype-display-flex-classes: (
             }
           }
         }
-        @if $global-flexbox {
-          @each $display-flex in $prototype-display-flex-classes {
-            @if $size != $-zf-zero-breakpoint {
-              .#{$size}-display-#{$display-flex} {
-                display: $display-flex !important;
-              }
-            }
-          }
-        }
       }
     }
   }