Sha256: 2f50ecb8a26b0dd0facb8e75bd61383514092b8a11be67f8796a471a51a04e1b

Contents?: true

Size: 1.25 KB

Versions: 91

Compression:

Stored size: 1.25 KB

Contents

@function _radial-gradient-parser($image) {
  $image: unquote($image);
  $gradients: ();
  $start: str-index($image, "(");
  $end: str-index($image, ",");
  $first-val: str-slice($image, $start + 1, $end - 1);

  $prefix: str-slice($image, 0, $start);
  $suffix: str-slice($image, $end, str-length($image));

  $is-spec-syntax: str-index($first-val, "at");

  @if $is-spec-syntax and $is-spec-syntax > 1 {
    $keyword: str-slice($first-val, 1, $is-spec-syntax - 2);
    $pos: str-slice($first-val, $is-spec-syntax + 3, str-length($first-val));
    $pos: append($pos, $keyword, comma);

    $gradients: (
      webkit-image: -webkit- + $prefix + $pos + $suffix,
      spec-image: $image
    )
  }

  @else if $is-spec-syntax == 1 {
    $pos: str-slice($first-val, $is-spec-syntax + 3, str-length($first-val));

    $gradients: (
      webkit-image: -webkit- + $prefix + $pos + $suffix,
      spec-image: $image
    )
  }

  @else if str-index($image, "cover") or str-index($image, "contain") {
    @warn "Radial-gradient needs to be updated to conform to latest spec.";

    $gradients: (
      webkit-image: null,
      spec-image: $image
    )
  }

  @else {
    $gradients: (
      webkit-image: -webkit- + $image,
      spec-image: $image
    )
  }

  @return $gradients;
}

Version data entries

91 entries across 86 versions & 10 rubygems

Version Path
growbot-web-0.0.1 lib/growbot/web/views/sass/bourbon/helpers/_radial-gradient-parser.scss
bourbon-compass-4.0.1 stylesheets/bourbon/helpers/_radial-gradient-parser.scss
bourbon-compass-4.0.0 stylesheets/bourbon/helpers/_radial-gradient-parser.scss
bourbon-4.0.1 dist/helpers/_radial-gradient-parser.scss
bourbon-4.0.1 app/assets/stylesheets/helpers/_radial-gradient-parser.scss
bourbon-4.0.0 dist/helpers/_radial-gradient-parser.scss
bourbon-4.0.0 app/assets/stylesheets/helpers/_radial-gradient-parser.scss
bourbon-4.0.0.rc2 app/assets/stylesheets/helpers/_radial-gradient-parser.scss
bourbon-4.0.0.rc2 dist/helpers/_radial-gradient-parser.scss
bourbon-4.0.0.rc1 dist/helpers/_radial-gradient-parser.scss
bourbon-4.0.0.rc1 app/assets/stylesheets/helpers/_radial-gradient-parser.scss