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.

55 lines
876 B

11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
  1. .vis-time-axis {
  2. position: relative;
  3. overflow: hidden;
  4. }
  5. .vis-time-axis.vis-foreground {
  6. top: 0;
  7. left: 0;
  8. width: 100%;
  9. }
  10. .vis-time-axis.vis-background {
  11. position: absolute;
  12. top: 0;
  13. left: 0;
  14. width: 100%;
  15. height: 100%;
  16. }
  17. .vis-time-axis .vis-text {
  18. position: absolute;
  19. color: #4d4d4d;
  20. padding: 3px;
  21. overflow: hidden;
  22. box-sizing: border-box;
  23. white-space: nowrap;
  24. }
  25. .vis-time-axis .vis-text.vis-measure {
  26. position: absolute;
  27. padding-left: 0;
  28. padding-right: 0;
  29. margin-left: 0;
  30. margin-right: 0;
  31. visibility: hidden;
  32. }
  33. .vis-time-axis .vis-grid.vis-vertical {
  34. position: absolute;
  35. border-left: 1px solid;
  36. }
  37. .vis-time-axis .vis-grid.vis-vertical-rtl {
  38. position: absolute;
  39. border-right: 1px solid;
  40. }
  41. .vis-time-axis .vis-grid.vis-minor {
  42. border-color: #e5e5e5;
  43. }
  44. .vis-time-axis .vis-grid.vis-major {
  45. border-color: #bfbfbf;
  46. }