chartjs.css 1.0 KB

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