Sha256: 7b08cbbfb59ff08f0df931b653e589cb5b0d637fa4e5065f58d2e3ce947ca0e7

Contents?: true

Size: 1.62 KB

Versions: 9

Compression:

Stored size: 1.62 KB

Contents

// ---------------------------------------------------------------------------
// Isolation

// Isolate the position of a grid element (use in addition to span-columns)
//
// $location  : The grid column to isolate in, relative to the container;
// $context   : [optional] The context (columns spanned by parent).
// $from      : The start direction of your layout (e.g. 'left' for ltr languages)
@mixin isolate(
  $location,
  $context: $total-columns,
  $from: $from-direction,
  $style: fix-static-misalignment()
) {
  $to: opposite-position($from);
  margin-#{$to}: -100%;
  margin-#{$from}: space($location - 1, $context, $style);
}

// Isolate a group of elements in a grid, using nth-child selectors
//
// $columns       : The column-width of each item on the grid;
// $context       : [optional] The context (columns spanned by parent).
// $selector      : [child | of-type | last-of-type ] (default is 'child')
// $from          : The start direction of your layout (e.g. 'left' for ltr languages)
@mixin isolate-grid(
  $columns,
  $context: $total-columns,
  $selector: 'child',
  $from: $from-direction,
  $style: fix-static-misalignment()
) {
  $to: opposite-position($from);
  $location: 1;
  $line: floor($context / $columns);

  @include span-columns($columns, $context, $from: $from, $style: $style);
  margin-#{$to}: -100%;

  @for $item from 1 through $line {
    $nth: '#{$line}n + #{$item}';
    &:#{format-nth($nth,$selector)} {
      margin-#{$from}: space($location - 1, $context, $style);
      @if $location == 1 { clear: $from; }

      $location: $location + $columns;
      @if $location > $context { $location: 1; }
    }
  }
}

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
rapido-css-0.1.1 stylesheets/susy/_susy_isolation.scss
rapido-css-0.1.0 stylesheets/susy/_susy_isolation.scss
rapido-css-0.0.7 stylesheets/susy/_susy_isolation.scss
rapido-css-0.0.6 stylesheets/susy/_susy_isolation.scss
rapido-css-0.0.5 stylesheets/susy/_susy_isolation.scss
rapido-css-0.0.4 stylesheets/susy/_susy_isolation.scss
rapido-css-0.0.3 stylesheets/susy/_susy_isolation.scss
rapido-css-0.0.2.1 stylesheets/susy/_susy_isolation.scss
rapido-css-0.0.1 stylesheets/susy/_susy_isolation.scss