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.

Chart.css 904B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. /*
  2. * DOM element rendering detection
  3. * https://davidwalsh.name/detect-node-insertion
  4. */
  5. @keyframes chartjs-render-animation {
  6. from {
  7. opacity: 0.99;
  8. }
  9. to {
  10. opacity: 1;
  11. }
  12. }
  13. .chartjs-render-monitor {
  14. animation: chartjs-render-animation 0.001s;
  15. }
  16. /*
  17. * DOM element resizing detection
  18. * https://github.com/marcj/css-element-queries
  19. */
  20. .chartjs-size-monitor,
  21. .chartjs-size-monitor-expand,
  22. .chartjs-size-monitor-shrink {
  23. position: absolute;
  24. direction: ltr;
  25. left: 0;
  26. top: 0;
  27. right: 0;
  28. bottom: 0;
  29. overflow: hidden;
  30. pointer-events: none;
  31. visibility: hidden;
  32. z-index: -1;
  33. }
  34. .chartjs-size-monitor-expand > div {
  35. position: absolute;
  36. width: 1000000px;
  37. height: 1000000px;
  38. left: 0;
  39. top: 0;
  40. }
  41. .chartjs-size-monitor-shrink > div {
  42. position: absolute;
  43. width: 200%;
  44. height: 200%;
  45. left: 0;
  46. top: 0;
  47. }