Sha256: 65fc57704cea07582f83b2065c7c4f7faf9b4a5177cdaecf4d7367f1dd32ea87

Contents?: true

Size: 918 Bytes

Versions: 15

Compression:

Stored size: 918 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

15 entries across 15 versions & 1 rubygems

Version Path
bootstrapped-rails-2.0.7.1 vendor/assets/stylesheets/custom_partials/transition.scss
bootstrapped-rails-2.0.7 vendor/assets/stylesheets/custom_partials/transition.scss
bootstrapped-rails-2.0.6 vendor/assets/stylesheets/custom_partials/transition.scss
bootstrapped-rails-2.0.5 vendor/assets/stylesheets/custom_partials/transition.scss
bootstrapped-rails-2.0.4 vendor/assets/stylesheets/custom_partials/transition.scss
bootstrapped-rails-2.0.3 vendor/assets/stylesheets/custom_partials/transition.scss
bootstrapped-rails-2.0.2 vendor/assets/stylesheets/custom_partials/transition.scss
bootstrapped-rails-2.0.1 vendor/assets/stylesheets/custom_partials/transition.scss
bootstrapped-rails-2.0.1.rc7 vendor/assets/stylesheets/custom_partials/transition.scss
bootstrapped-rails-2.0.1.rc6 vendor/assets/stylesheets/custom_partials/transition.scss
bootstrapped-rails-2.0.1.rc5 vendor/assets/stylesheets/custom_partials/transition.scss
bootstrapped-rails-2.0.1.rc4 vendor/assets/stylesheets/custom_partials/transition.scss
bootstrapped-rails-2.0.0 vendor/assets/stylesheets/custom_partials/transition.scss
bootstrapped-rails-2.0.0.rc2 vendor/assets/stylesheets/custom_partials/transition.scss
bootstrapped-rails-2.0.0.rc1 vendor/assets/stylesheets/custom_partials/transition.scss