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.

33 lines
531 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. }
  13. .vis.timeline .axis {
  14. position: absolute;
  15. width: 100%;
  16. height: 0;
  17. left: 1px;
  18. z-index: 1;
  19. }
  20. .vis.timeline .foreground .group {
  21. position: relative;
  22. box-sizing: border-box;
  23. border-bottom: 1px solid #bfbfbf;
  24. }
  25. .vis.timeline .foreground .group:last-child {
  26. border-bottom: none;
  27. }