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.

42 lines
610 B

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