_panel_heatmap.scss 584 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. .heatmap-canvas-wrapper {
  2. // position: relative;
  3. cursor: crosshair;
  4. }
  5. .heatmap-panel {
  6. position: relative;
  7. .axis .tick {
  8. text {
  9. fill: $text-color;
  10. color: $text-color;
  11. font-size: $font-size-sm;
  12. }
  13. line {
  14. opacity: 0.4;
  15. stroke: $text-color-weak;
  16. }
  17. }
  18. }
  19. .heatmap-tooltip {
  20. white-space: nowrap;
  21. font-size: $font-size-sm;
  22. background-color: $graph-tooltip-bg;
  23. color: $text-color;
  24. }
  25. .heatmap-histogram rect {
  26. fill: $text-color-weak;
  27. }
  28. .heatmap-crosshair {
  29. line {
  30. stroke: darken($red,15%);
  31. stroke-width: 1;
  32. }
  33. }