vis.js is a dynamic, browser-based visualization library
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

29 lines
930 B

  1. /*
  2. Note: .vis.timeline.root may not have transitions, else its height cannot be
  3. determined (depends on autoHeight, css height, css minHeight, and css maxHeight)
  4. */
  5. /*.vis.timeline.root,*/
  6. .vis.timeline .axis,
  7. .vis.timeline .vispanel.center,
  8. .vis.timeline .vispanel.left,
  9. .vis.timeline .vispanel.right,
  10. .vis.timeline .vispanel.bottom {
  11. -webkit-transition: height .4s ease-in-out, top .4s ease-in-out;
  12. transition: height .4s ease-in-out, top .4s ease-in-out;
  13. }
  14. .vis.timeline .vispanel .itemset .group,
  15. .vis.timeline .vispanel .labelset .vlabel {
  16. -webkit-transition: height .4s ease-in-out;
  17. transition: height .4s ease-in-out;
  18. }
  19. .vis.timeline .item {
  20. -webkit-transition: top .4s ease-in-out;
  21. transition: top .4s ease-in-out;
  22. }
  23. .vis.timeline .item.line {
  24. -webkit-transition: height .4s ease-in-out, top .4s ease-in-out;
  25. transition: height .4s ease-in-out, top .4s ease-in-out;
  26. }