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.

47 lines
733 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. white-space: nowrap;
  22. }
  23. .vis-time-axis .vis-text.vis-measure {
  24. position: absolute;
  25. padding-left: 0;
  26. padding-right: 0;
  27. margin-left: 0;
  28. margin-right: 0;
  29. visibility: hidden;
  30. }
  31. .vis-time-axis .vis-grid.vis-vertical {
  32. position: absolute;
  33. border-left: 1px solid;
  34. }
  35. .vis-time-axis .vis-grid.vis-minor {
  36. border-color: #e5e5e5;
  37. }
  38. .vis-time-axis .vis-grid.vis-major {
  39. border-color: #bfbfbf;
  40. }