Sha256: 82165701bf0653bda660854af9679f7352b1f8c4df0f74e7986e2b8f5e13253a

Contents?: true

Size: 690 Bytes

Versions: 4

Compression:

Stored size: 690 Bytes

Contents

//************************************************************************//
// Default: Webkit, moz, spec
// Example: @include prefixer(border-radius, $radii, $o: true);
//************************************************************************//
@mixin prefixer ($property, $value,
                 $webkit: true,
                    $moz: true,
                     $ms: false,
                      $o: false,
                   $spec: true) {
  @if $webkit { -webkit-#{$property}: $value; }
  @if $moz    {    -moz-#{$property}: $value; }
  @if $ms     {     -ms-#{$property}: $value; }
  @if $o      {      -o-#{$property}: $value; }
  @if $spec   {         #{$property}: $value; }
}

Version data entries

4 entries across 4 versions & 2 rubygems

Version Path
bourbon-compass-2.1.3 stylesheets/bourbon/addons/_prefixer.scss
bourbon-2.1.3 app/assets/stylesheets/addons/_prefixer.scss
bourbon-compass-2.1.2 stylesheets/bourbon/css3/_prefixer.scss
bourbon-2.1.2 app/assets/stylesheets/css3/_prefixer.scss