Sha256: 6940ca0d124f056b0c2f5f8c895729d3d6d828308a08492d2d900505f7134720
Contents?: true
Size: 1.13 KB
Versions: 80
Compression:
Stored size: 1.13 KB
Contents
//************************************************************************// // Default: Webkit, moz, spec // Example: @include prefixer(border-radius, $radii, $o: true); // // Source : https://github.com/thoughtbot/bourbon/blob/master/app/assets/stylesheets/css3/_prefixer.scss //************************************************************************// @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; } } //************************************************************************// // Source : https://github.com/thoughtbot/bourbon/blob/master/app/assets/stylesheets/css3/_border-radius.scss //************************************************************************// @mixin border-radius ($radii) { @include prefixer(border-radius, $radii, webkit, moz, ms, o); }
Version data entries
80 entries across 80 versions & 3 rubygems