You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

51 lines
1009 B
CSS

2 years ago
/*
* DOM element rendering detection
* https://davidwalsh.name/detect-node-insertion
*/
@-webkit-keyframes chartjs-render-animation {
from {
opacity: 0.99; }
to {
opacity: 1; } }
@keyframes chartjs-render-animation {
from {
opacity: 0.99; }
to {
opacity: 1; } }
.chartjs-render-monitor {
-webkit-animation: chartjs-render-animation 0.001s;
animation: chartjs-render-animation 0.001s; }
/*
* DOM element resizing detection
* https://github.com/marcj/css-element-queries
*/
.chartjs-size-monitor,
.chartjs-size-monitor-expand,
.chartjs-size-monitor-shrink {
position: absolute;
direction: rtl;
right: 0;
top: 0;
left: 0;
bottom: 0;
overflow: hidden;
pointer-events: none;
visibility: hidden;
z-index: -1; }
.chartjs-size-monitor-expand > div {
position: absolute;
width: 1000000px;
height: 1000000px;
right: 0;
top: 0; }
.chartjs-size-monitor-shrink > div {
position: absolute;
width: 200%;
height: 200%;
right: 0;
top: 0; }