Sha256: 874bb526427901b5e90c3b5e324b751c156302b7dd2115a261688da91e2e30bc

Contents?: true

Size: 1.28 KB

Versions: 353

Compression:

Stored size: 1.28 KB

Contents

@mixin linear-gradient($pos, $G1, $G2: null,
                       $G3: null, $G4: null,
                       $G5: null, $G6: null,
                       $G7: null, $G8: null,
                       $G9: null, $G10: null,
                       $fallback: null) {
  // Detect what type of value exists in $pos
  $pos-type: type-of(nth($pos, 1));
  $pos-spec: null;
  $pos-degree: null;

  // If $pos is missing from mixin, reassign vars and add default position
  @if ($pos-type == color) or (nth($pos, 1) == "transparent")  {
    $G10: $G9; $G9: $G8; $G8: $G7; $G7: $G6; $G6: $G5;
     $G5: $G4; $G4: $G3; $G3: $G2; $G2: $G1; $G1: $pos;
     $pos: null;
  }

  @if $pos {
    $positions: _linear-positions-parser($pos);
    $pos-degree: nth($positions, 1);
    $pos-spec:   nth($positions, 2);
  }

  $full: $G1, $G2, $G3, $G4, $G5, $G6, $G7, $G8, $G9, $G10;

  // Set $G1 as the default fallback color
  $fallback-color: nth($G1, 1);

  // If $fallback is a color use that color as the fallback color
  @if (type-of($fallback) == color) or ($fallback == "transparent") {
    $fallback-color: $fallback;
  }

  background-color: $fallback-color;
  background-image: -webkit-linear-gradient($pos-degree $full); // Safari 5.1+, Chrome
  background-image: unquote("linear-gradient(#{$pos-spec}#{$full})");
}

Version data entries

353 entries across 342 versions & 11 rubygems

Version Path
smock-0.1.219 app/assets/stylesheets/thirdparty/bourbon/css3/_linear-gradient.scss
smock-0.1.218 app/assets/stylesheets/thirdparty/bourbon/css3/_linear-gradient.scss
frozen-0.0.1 dummy/assets/stylesheets/bourbon/css3/_linear-gradient.scss
bourbon-3.2.4 dist/css3/_linear-gradient.scss
bourbon-3.2.4 app/assets/stylesheets/css3/_linear-gradient.scss
smock-0.1.217 app/assets/stylesheets/thirdparty/bourbon/css3/_linear-gradient.scss
smock-0.1.216 app/assets/stylesheets/thirdparty/bourbon/css3/_linear-gradient.scss
smock-0.1.215 app/assets/stylesheets/thirdparty/bourbon/css3/_linear-gradient.scss
smock-0.1.214 app/assets/stylesheets/thirdparty/bourbon/css3/_linear-gradient.scss
smock-0.1.213 app/assets/stylesheets/thirdparty/bourbon/css3/_linear-gradient.scss
bourbon-4.1.1 app/assets/stylesheets/css3/_linear-gradient.scss
smock-0.1.212 app/assets/stylesheets/thirdparty/bourbon/css3/_linear-gradient.scss
smock-0.1.211 app/assets/stylesheets/thirdparty/bourbon/css3/_linear-gradient.scss
smock-0.1.210 app/assets/stylesheets/thirdparty/bourbon/css3/_linear-gradient.scss
smock-0.1.209 app/assets/stylesheets/thirdparty/bourbon/css3/_linear-gradient.scss
smock-0.1.208 app/assets/stylesheets/thirdparty/bourbon/css3/_linear-gradient.scss
smock-0.1.207 app/assets/stylesheets/thirdparty/bourbon/css3/_linear-gradient.scss
smock-0.1.206 app/assets/stylesheets/thirdparty/bourbon/css3/_linear-gradient.scss
smock-0.1.205 app/assets/stylesheets/thirdparty/bourbon/css3/_linear-gradient.scss
bourbon-4.1.0 app/assets/stylesheets/css3/_linear-gradient.scss