2012-08-08 01:45:22 +04:00
|
|
|
.animated,
|
|
|
|
|
/* mostly to animate the background... */
|
|
|
|
|
.transitions-enabled.viewer,
|
|
|
|
|
/* now the normal stuff */
|
|
|
|
|
.transitions-enabled .image,
|
|
|
|
|
.transitions-enabled .demo-buttons,
|
|
|
|
|
.transitions-enabled .controller,
|
|
|
|
|
.transitions-enabled .controller-mini,
|
2012-08-25 01:58:27 +04:00
|
|
|
.transitions-enabled .current-indicator,
|
2012-08-08 01:45:22 +04:00
|
|
|
.transitions-enabled .container,
|
|
|
|
|
.transitions-enabled .field,
|
|
|
|
|
.transitions-enabled .ribbon,
|
|
|
|
|
.transitions-enabled .new-ribbon,
|
|
|
|
|
.transitions-enabled .current.ribbon {
|
2012-08-07 21:12:22 +04:00
|
|
|
-webkit-transition: all 0.2s ease;
|
|
|
|
|
-moz-transition: all 0.2s ease;
|
|
|
|
|
-o-transition: all 0.2s ease;
|
|
|
|
|
-ms-transition: all 0.2s ease;
|
|
|
|
|
transition: all 0.2s ease;
|
|
|
|
|
}
|
2012-08-25 01:58:27 +04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
.unanimated {
|
|
|
|
|
-webkit-transition: none;
|
|
|
|
|
-moz-transition: none;
|
|
|
|
|
-o-transition: all 0 ease;
|
|
|
|
|
-ms-transition: none;
|
|
|
|
|
transition: none;
|
|
|
|
|
}
|
|
|
|
|
|