Sha256: ee2254882d7282413119b3602e15b0be1ca9f43a060e46299a9ccc3a445873c1

Contents?: true

Size: 756 Bytes

Versions: 2

Compression:

Stored size: 756 Bytes

Contents

@import "shared";

// Webkit, IE10 and future support for [CSS Regions](http://dev.w3.org/csswg/css3-regions/)
//
// $target is a value you use to link two regions of your css. Give the source of your content the flow-into property, and give your target container the flow-from property.
//
// For a visual explanation, see the diagrams at Chris Coyier's
// [CSS-Tricks](http://css-tricks.com/content-folding/)

@mixin flow-into($target) {
  $target: unquote($target);
  @include experimental(flow-into, $target,
    not(-moz), -webkit, not(-o), -ms, not(-khtml), not official
  );
}

@mixin flow-from($target) {
  $target: unquote($target);
  @include experimental(flow-from, $target,
    not(-moz), -webkit, not(-o), -ms, not(-khtml), not official
  );
}

Version data entries

2 entries across 2 versions & 2 rubygems

Version Path
comixins-0.1.2 vendor/assets/stylesheets/compass/css3/_regions.scss
ghost-manager-1.0.0 magneto/source/assets/bower_components/compass-mixins/lib/compass/css3/_regions.scss