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.

62 lines
915 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-nesting-group {
  30. cursor: pointer;
  31. }
  32. .vis-nested-group {
  33. background: #f5f5f5;
  34. }
  35. .vis-label.vis-nesting-group.expanded:before {
  36. content: "\25BC";
  37. }
  38. .vis-label.vis-nesting-group.collapsed-rtl:before {
  39. content: "\25C0";
  40. }
  41. .vis-label.vis-nesting-group.collapsed:before {
  42. content: "\25B6";
  43. }
  44. .vis-overlay {
  45. position: absolute;
  46. top: 0;
  47. left: 0;
  48. width: 100%;
  49. height: 100%;
  50. z-index: 10;
  51. }