From: harry Date: Mon, 6 Feb 2017 17:48:57 +0000 (+0530) Subject: Removed flex prototypes as we will take that up in seprate PR X-Git-Tag: v6.4.0-rc1~23^2~20^2~101 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d08d9e5541855590260f60c23ee2a4cc2118058d;p=thirdparty%2Ffoundation%2Ffoundation-sites.git Removed flex prototypes as we will take that up in seprate PR --- diff --git a/assets/foundation-flex-prototype.scss b/assets/foundation-flex-prototype.scss deleted file mode 100644 index d13ee2ca7..000000000 --- a/assets/foundation-flex-prototype.scss +++ /dev/null @@ -1,3 +0,0 @@ -@import '../scss/foundation'; - -@include foundation-everything($flex: true, $prototype: true); diff --git a/scss/prototype/_display.scss b/scss/prototype/_display.scss index c86e94c93..39e4d643c 100644 --- a/scss/prototype/_display.scss +++ b/scss/prototype/_display.scss @@ -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; - } - } - } - } } } }