heatmap.light.css 840 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. .axis {
  2. font-family: "Open Sans", Helvetica, Arial, sans-serif;
  3. font-size: smaller;
  4. fill: #555555;
  5. }
  6. .axis path,
  7. .axis line {
  8. fill: none;
  9. stroke: #D8D9DA;
  10. /*shape-rendering: crispEdges;*/
  11. }
  12. .tick line {
  13. opacity: 0.4;
  14. stroke: #D8D9DA;
  15. }
  16. .tick text {
  17. fill: #555555;
  18. }
  19. .heatmap-panel {
  20. cursor: crosshair;
  21. }
  22. div.heatmap-tooltip {
  23. position: absolute;
  24. text-align: left;
  25. min-width: 160px;
  26. padding: 12px;
  27. font-family: "Open Sans", Helvetica, Arial, sans-serif;
  28. font-size: 13px;
  29. background: #ECECEC;
  30. border: 0px;
  31. border-radius: 8px;
  32. pointer-events: none;
  33. }
  34. .card-highlighted:hover {
  35. stroke: #D8D9DA;
  36. }
  37. .heatmap-histogram rect {
  38. fill: #555555;
  39. }
  40. .heatmap-crosshair line {
  41. stroke: #a25959;
  42. stroke-width: 1;
  43. }
  44. .heatmap-selection {
  45. stroke-width: 1;
  46. opacity: 0.3;
  47. fill: #555555;
  48. stroke: #000;
  49. }