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.

34 lines
550 B

  1. .vis.timeline .itemset {
  2. position: relative;
  3. padding: 0;
  4. margin: 0;
  5. box-sizing: border-box;
  6. }
  7. .vis.timeline .itemset .background,
  8. .vis.timeline .itemset .foreground {
  9. position: absolute;
  10. width: 100%;
  11. height: 100%;
  12. overflow: visible;
  13. }
  14. .vis.timeline .axis {
  15. position: absolute;
  16. width: 100%;
  17. height: 0;
  18. left: 0;
  19. z-index: 1;
  20. }
  21. .vis.timeline .foreground .group {
  22. position: relative;
  23. box-sizing: border-box;
  24. border-bottom: 1px solid #bfbfbf;
  25. }
  26. .vis.timeline .foreground .group:last-child {
  27. border-bottom: none;
  28. }