summaryrefslogtreecommitdiff
path: root/js/dojo-1.7.2/dojox/mobile/themes/common/transitions/reveal.css
blob: b711984c69b883eeceb71511aac0e4a60ea4bcaf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
.mblReveal.mblOut {
	z-index: 0;
	-webkit-transition-property: none;
	-webkit-transition-duration: 0s;
	-webkit-transform: translate3d(0%,0px,0px) !important;
}
.mblReveal.mblOut.mblTransition {
	-webkit-transition-property: -webkit-transform;
	-webkit-transition-duration: .4s;
	-webkit-transform: translate3d(-100%,0px,0px) !important;
}
.mblReveal.mblIn {
	z-index: -100;
	-webkit-transition-property: none;
	-webkit-transition-duration: 0s;
	-webkit-transform: translate3d(0%,0px,-1px) !important;
}
.mblReveal.mblIn.mblTransition {
	-webkit-transition-property: -webkit-transform;
	-webkit-transition-duration: .4s;
	-webkit-transform: translate3d(0%,0px,0px) !important;
}
.mblReveal.mblOut.mblReverse {
	-webkit-transition-property: none;
	-webkit-transform: translate3d(0%,0px,0px) !important;
}
.mblReveal.mblOut.mblReverse.mblTransition {
	-webkit-transition-property: -webkit-transform;
	-webkit-transform: translate3d(100%,0px,0px) !important;
}
.dj_android.dj_tablet .mblReveal.mblOut.mblTransition,
.dj_android.dj_tablet .mblReveal.mblIn.mblTransition {
	-webkit-transition-duration: .6s;
	-webkit-transition-timing-function: linear;
}