From: harry Date: Wed, 8 Feb 2017 14:33:16 +0000 (+0530) Subject: Removed negative margin classes, as not so much useful X-Git-Tag: v6.4.0-rc1~23^2~20^2~83 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=31e466d6e38a3b1942106b08a650dbc580772642;p=thirdparty%2Ffoundation%2Ffoundation-sites.git Removed negative margin classes, as not so much useful --- diff --git a/scss/prototype/_spacing.scss b/scss/prototype/_spacing.scss index c606fee05..49daffd7a 100644 --- a/scss/prototype/_spacing.scss +++ b/scss/prototype/_spacing.scss @@ -56,7 +56,7 @@ $prototype-spacers-count: 5 !default; $size: ($size * $prototype-spacing-multiplier); - // Positive Margin & Padding + // Margin & Padding .#{$abbrev}-a-#{$size} { #{$prop}: $length-y $length-x !important; } // a = All sides @@ -82,36 +82,6 @@ $prototype-spacers-count: 5 !default; #{$prop}-top: $length-y !important; #{$prop}-bottom: $length-y !important; } // y = vertical line - - // Negative margin - @if ($prop == margin ) { - - .#{$abbrev}-a-#{$size}n { - #{$prop}: ($length-y * -1) ($length-x * -1) !important; - } // a = All sides - .#{$abbrev}-t-#{$size}n { - #{$prop}-top: ($length-y * -1) !important; - } // t = top - .#{$abbrev}-r-#{$size}n { - #{$prop}-right: ($length-x * -1) !important; - } // r = right - .#{$abbrev}-b-#{$size}n { - #{$prop}-bottom: ($length-y * -1) !important; - } // b = bottom - .#{$abbrev}-l-#{$size}n { - #{$prop}-left: ($length-x * -1) !important; - } // l = left - - // Axes - .#{$abbrev}-x-#{$size}n { - #{$prop}-right: ($length-x * -1) !important; - #{$prop}-left: ($length-x * -1) !important; - } // x = Horizontal Line - .#{$abbrev}-y-#{$size}n { - #{$prop}-top: ($length-y * -1) !important; - #{$prop}-bottom: ($length-y * -1) !important; - } // y = vertical line - } } } }