Sha256: 880e7741518283de010093c0456c0dc64a575bccd1d9a64201a62137f3806bb3

Contents?: true

Size: 886 Bytes

Versions: 38

Compression:

Stored size: 886 Bytes

Contents

@charset "UTF-8";

/// Converts shorthand to the 4-value syntax.
///
/// @param {List} $shorthand
///
/// @example scss - Usage
///   .element {
///     margin: unpack(1em 2em);
///   }
///
/// @example css - CSS Output
///   .element {
///     margin: 1em 2em 1em 2em;
///   }

@function unpack($shorthand) {
  @if $output-bourbon-deprecation-warnings == true {
    @warn "[Bourbon] [Deprecation] `unpack` is deprecated and will be " +
    "removed in 5.0.0.";
  }

  @if length($shorthand) == 1 {
    @return nth($shorthand, 1) nth($shorthand, 1) nth($shorthand, 1) nth($shorthand, 1);
  } @else if length($shorthand) == 2 {
    @return nth($shorthand, 1) nth($shorthand, 2) nth($shorthand, 1) nth($shorthand, 2);
  } @else if length($shorthand) == 3 {
    @return nth($shorthand, 1) nth($shorthand, 2) nth($shorthand, 3) nth($shorthand, 2);
  } @else {
    @return $shorthand;
  }
}

Version data entries

38 entries across 38 versions & 6 rubygems

Version Path
cortex-0.1.3 spec/dummy/node_modules/bourbon/app/assets/stylesheets/functions/_unpack.scss
english_tea-0.6.2 vendor/assets/stylesheets/bourbon/functions/_unpack.scss
english_tea-0.6.1 vendor/assets/stylesheets/bourbon/functions/_unpack.scss
english_tea-0.6.0 vendor/assets/stylesheets/bourbon/functions/_unpack.scss
english_tea-0.5.3 vendor/assets/stylesheets/bourbon/functions/_unpack.scss
english_tea-0.5.2 vendor/assets/stylesheets/bourbon/functions/_unpack.scss
english_tea-0.5.1 vendor/assets/stylesheets/bourbon/functions/_unpack.scss
english_tea-0.5.0 vendor/assets/stylesheets/bourbon/functions/_unpack.scss
english_tea-0.4.0 vendor/assets/stylesheets/bourbon/functions/_unpack.scss
english_tea-0.3.0 vendor/assets/stylesheets/bourbon/functions/_unpack.scss
wayfarer-jruby-0.0.3 docs/_sass/vendor/bourbon/functions/_unpack.scss
wayfarer-0.0.3 docs/_sass/vendor/bourbon/functions/_unpack.scss
wayfarer-jruby-0.0.2 docs/_sass/vendor/bourbon/functions/_unpack.scss
wayfarer-jruby-0.0.1 docs/_sass/vendor/bourbon/functions/_unpack.scss
bourbon-4.3.4 app/assets/stylesheets/functions/_unpack.scss
dta_rapid-0.3.5 _sass/vendor/bourbon/functions/_unpack.scss
dta_rapid-0.3.4 _sass/vendor/bourbon/functions/_unpack.scss
dta_rapid-0.3.3 _sass/vendor/bourbon/functions/_unpack.scss
dta_rapid-0.3.2 _sass/vendor/bourbon/functions/_unpack.scss
dta_rapid-0.3.1 _sass/vendor/bourbon/functions/_unpack.scss