123456789101112131415161718192021222324252627282930313233 |
- .vis-timeline {
- /*
- -webkit-transition: height .4s ease-in-out;
- transition: height .4s ease-in-out;
- */
- }
- .vis-panel {
- /*
- -webkit-transition: height .4s ease-in-out, top .4s ease-in-out;
- transition: height .4s ease-in-out, top .4s ease-in-out;
- */
- }
- .vis-axis {
- /*
- -webkit-transition: top .4s ease-in-out;
- transition: top .4s ease-in-out;
- */
- }
- /* TODO: get animation working nicely
- .vis-item {
- -webkit-transition: top .4s ease-in-out;
- transition: top .4s ease-in-out;
- }
- .vis-item.line {
- -webkit-transition: height .4s ease-in-out, top .4s ease-in-out;
- transition: height .4s ease-in-out, top .4s ease-in-out;
- }
- /**/
|