d3-gantt.css 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. .chart {
  2. font-family: Arial, sans-serif;
  3. font-size: 12px;
  4. }
  5. rect.zoom-panel {
  6. /*cursor: ew-resize;*/
  7. fill: none;
  8. pointer-events: all;
  9. }
  10. .axis path,.axis line {
  11. fill: none;
  12. stroke: #000;
  13. shape-rendering: crispEdges;
  14. }
  15. .axis.y {
  16. font-size: 16px;
  17. cursor: ns-resize;
  18. }
  19. .axis.x {
  20. font-size: 16px;
  21. }
  22. #ruler {
  23. text-anchor: middle;
  24. alignment-baseline: before-edge;
  25. font-size: 16px;
  26. font-family: sans-serif;
  27. pointer-events: none;
  28. }
  29. .d3-tip {
  30. line-height: 1;
  31. font-weight: bold;
  32. padding: 12px;
  33. background: rgba(0, 0, 0, 0.8);
  34. color: #fff;
  35. border-radius: 2px;
  36. }
  37. .d3-tip pre {
  38. font-weight: bold;
  39. padding: 12px;
  40. background: rgba(0, 0, 0, 0);
  41. color: #fff;
  42. border: 0px;
  43. }
  44. /* Style northward tooltips differently */
  45. .d3-tip.n:after {
  46. margin: -1px 0 0 0;
  47. top: 100%;
  48. left: 0;
  49. }
  50. /* for arrowhead marker */
  51. #arrow {
  52. stroke-width:1;
  53. stroke-dasharray:0;
  54. }
  55. .bar:hover {
  56. stroke-width: 1px;
  57. stroke: black;
  58. }