Sha256: fe1a5a2487788565bb9b7705f40bad74eb3e8637a7a2c87252b202decb3da86f

Contents?: true

Size: 919 Bytes

Versions: 16

Compression:

Stored size: 919 Bytes

Contents

@mixin transition($property: background, $duration: 1s, $delay: 0.25s, $ease: easeOut) {
	transition: $property $duration;
	-moz-transition: $property $duration; /* Firefox 4 */
	-webkit-transition: $property $duration; /* Safari and Chrome */
	-o-transition: $property $duration; 
	transition-property: $property;
	transition-duration: $duration;
	transition-timing-function: $ease;
	transition-delay: $delay;
	/* Firefox 4 */
	-moz-transition-property: $property;
	-moz-transition-duration: $duration;
	-moz-transition-timing-function: $ease;
	-moz-transition-delay: $delay;
	/* Safari and Chrome */
	-webkit-transition-property: $property;
	-webkit-transition-duration: $duration;
	-webkit-transition-timing-function: $ease;
	-webkit-transition-delay: $delay;
	/* Opera */
	-o-transition-property: $property;
	-o-transition-duration: $duration;
	-o-transition-timing-function: $ease;
	-o-transition-delay: $delay;
}

Version data entries

16 entries across 16 versions & 1 rubygems

Version Path
bootstrapped-rails-2.0.9.rc2 vendor/assets/stylesheets/custom_partials/transition.scss
bootstrapped-rails-2.0.9.rc1 vendor/assets/stylesheets/custom_partials/transition.scss
bootstrapped-rails-2.0.8.5 vendor/assets/stylesheets/custom_partials/transition.scss
bootstrapped-rails-2.0.8.4 vendor/assets/stylesheets/custom_partials/transition.scss
bootstrapped-rails-2.0.8.3 vendor/assets/stylesheets/custom_partials/transition.scss
bootstrapped-rails-2.0.8.2 vendor/assets/stylesheets/custom_partials/transition.scss
bootstrapped-rails-2.0.8.1 vendor/assets/stylesheets/custom_partials/transition.scss
bootstrapped-rails-2.0.8 vendor/assets/stylesheets/custom_partials/transition.scss
bootstrapped-rails-2.0.7.9 vendor/assets/stylesheets/custom_partials/transition.scss
bootstrapped-rails-2.0.7.8 vendor/assets/stylesheets/custom_partials/transition.scss
bootstrapped-rails-2.0.7.7 vendor/assets/stylesheets/custom_partials/transition.scss
bootstrapped-rails-2.0.7.6 vendor/assets/stylesheets/custom_partials/transition.scss
bootstrapped-rails-2.0.7.5 vendor/assets/stylesheets/custom_partials/transition.scss
bootstrapped-rails-2.0.7.4 vendor/assets/stylesheets/custom_partials/transition.scss
bootstrapped-rails-2.0.7.3 vendor/assets/stylesheets/custom_partials/transition.scss
bootstrapped-rails-2.0.7.2 vendor/assets/stylesheets/custom_partials/transition.scss