Sha256: d5044d7b1ee46ce191346f7c1260171cb4a0e6270cf9c36e9b66d030254c9b38

Contents?: true

Size: 770 Bytes

Versions: 4

Compression:

Stored size: 770 Bytes

Contents

.mblScaleIn.mblOut {
	z-index: -100;
	-webkit-animation-duration: .5s;
	-webkit-animation-name: mblScaleInOut;
	-webkit-animation-timing-function: ease-out;
}
.mblScaleIn.mblIn {
	-webkit-animation-duration: .5s;
	-webkit-animation-name: mblScaleInIn;
	-webkit-animation-timing-function: ease-out;
}
.dj_android .mblScaleIn.mblIn {
	-webkit-animation-name: mblScaleInInAndroid;
}
@-webkit-keyframes mblScaleInOut {
	from { -webkit-transform: scale(1.0); }
	to { -webkit-transform: scale(1.0); }
}
@-webkit-keyframes mblScaleInIn {
	from {
		-webkit-transform: scale(0.0);
		opacity: 0;
	}
	to {
		-webkit-transform: scale(1.0);
		opacity: 1;
	}
}
@-webkit-keyframes mblScaleInInAndroid {
	from { -webkit-transform: scale(0.0); }
	to { -webkit-transform: scale(1.0); }
}

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
dojox-rails-0.14.0 vendor/assets/stylesheets/mobile/themes/common/transitions/scaleIn.css
dojox-rails-0.13.0 vendor/assets/javascripts/dojox/mobile/themes/common/transitions/scaleIn.css
dojox-rails-0.12.0 vendor/assets/javascripts/dojox/mobile/themes/common/transitions/scaleIn.css
dojox-rails-0.11.0 vendor/assets/javascripts/mobile/themes/common/transitions/scaleIn.css