Sha256: 4c32ac8909b4bcf5542731898f46616917e821671330d35765d22d9eacab4393
Contents?: true
Size: 712 Bytes
Versions: 131
Compression:
Stored size: 712 Bytes
Contents
// Return vendor-prefixed property names if appropriate // Example: transition-property-names((transform, color, background), moz) -> -moz-transform, color, background //************************************************************************// @function transition-property-names($props, $vendor: false) { $new-props: (); @each $prop in $props { $new-props: append($new-props, transition-property-name($prop, $vendor), comma); } @return $new-props; } @function transition-property-name($prop, $vendor: false) { // put other properties that need to be prefixed here aswell @if $vendor and $prop == transform { @return unquote('-'+$vendor+'-'+$prop); } @else { @return $prop; } }
Version data entries
131 entries across 124 versions & 21 rubygems