Sha256: 540289ae953d7f2f2656889e7e40b5c4bce3f55be0d1f15e7a7905bcbae03013

Contents?: true

Size: 1.06 KB

Versions: 246

Compression:

Stored size: 1.06 KB

Contents

//////////////////////////////
// Import Pieces
//////////////////////////////
@import "double/default-pair";
@import "double/double-string";
@import "double/default";

@function breakpoint-parse-double($feature, $empty-media, $first) {
  $parsed: '';
  $leader: '';
  // If we're forcing
  @if not ($empty-media) or not ($first) {
    $leader: 'and ';
  }

  $first: nth($feature, 1);
  $second: nth($feature, 2);

  // If we've got two numbers, we know we need to use the default pair because there are no media queries that has a media feature that is a number
  @if type-of($first) == 'number' and type-of($second) == 'number' {
    $parsed: breakpoint-parse-default-pair($first, $second);
  }
  // If they are both strings, we send it through the string parser
  @else if type-of($first) == 'string' and type-of($second) == 'string' {
    $parsed: breakpoint-parse-double-string($first, $second);
  }
  // If it's a string/number pair, we parse it as a normal double
  @else {
    $parsed: breakpoint-parse-double-default($first, $second);
  }

  @return $leader + $parsed;
}

Version data entries

246 entries across 184 versions & 12 rubygems

Version Path
oneflow-jekyll-1.0 _sass/oneflow/vendor/breakpoint/parsers/_double.scss
minimal-mistakes-jekyll-4.26.2 _sass/minimal-mistakes/vendor/breakpoint/parsers/_double.scss
minimal-mistakes-jekyll-4.26.0 _sass/minimal-mistakes/vendor/breakpoint/parsers/_double.scss
minimal-mistakes-jekyll-4.25.1 _sass/minimal-mistakes/vendor/breakpoint/parsers/_double.scss
minimal-mistakes-jekyll-4.25.0 _sass/minimal-mistakes/vendor/breakpoint/parsers/_double.scss
creek-jekyll-theme-1.7.5 _sass/minimal-mistakes/vendor/breakpoint/parsers/_double.scss
creek-jekyll-theme-1.7.4 _sass/minimal-mistakes/vendor/breakpoint/parsers/_double.scss
creek-jekyll-theme-1.7.3 _sass/minimal-mistakes/vendor/breakpoint/parsers/_double.scss
creek-jekyll-theme-1.7.1 _sass/minimal-mistakes/vendor/breakpoint/parsers/_double.scss
creek-jekyll-theme-1.7.0 _sass/minimal-mistakes/vendor/breakpoint/parsers/_double.scss
creek-jekyll-theme-1.6.0 _sass/minimal-mistakes/vendor/breakpoint/parsers/_double.scss
creek-jekyll-theme-1.5.0 _sass/minimal-mistakes/vendor/breakpoint/parsers/_double.scss
creek-jekyll-theme-1.4.1 _sass/minimal-mistakes/vendor/breakpoint/parsers/_double.scss
creek-jekyll-theme-1.4.0 _sass/minimal-mistakes/vendor/breakpoint/parsers/_double.scss
creek-jekyll-theme-1.3.0 _sass/minimal-mistakes/vendor/breakpoint/parsers/_double.scss
creek-jekyll-theme-1.2.2 _sass/minimal-mistakes/vendor/breakpoint/parsers/_double.scss
creek-jekyll-theme-1.2.0 _sass/minimal-mistakes/vendor/breakpoint/parsers/_double.scss
creek-jekyll-theme-1.1.0 _sass/minimal-mistakes/vendor/breakpoint/parsers/_double.scss
creek-jekyll-theme-1.0.0 _sass/minimal-mistakes/vendor/breakpoint/parsers/_double.scss
creek-jekyll-theme-0.5.2 _sass/minimal-mistakes/vendor/breakpoint/parsers/_double.scss