| 1 |
@keyframes chartjs-render-animation { |
| 2 |
from { |
| 3 |
opacity: 0.99; |
| 4 |
} |
| 5 |
to { |
| 6 |
opacity: 1; |
| 7 |
} |
| 8 |
} |
| 9 |
.chartjs-render-monitor { |
| 10 |
animation: chartjs-render-animation 1ms; |
| 11 |
} |
| 12 |
.chartjs-size-monitor, |
| 13 |
.chartjs-size-monitor-expand, |
| 14 |
.chartjs-size-monitor-shrink { |
| 15 |
position: absolute; |
| 16 |
direction: ltr; |
| 17 |
left: 0; |
| 18 |
top: 0; |
| 19 |
right: 0; |
| 20 |
bottom: 0; |
| 21 |
overflow: hidden; |
| 22 |
pointer-events: none; |
| 23 |
visibility: hidden; |
| 24 |
z-index: -1; |
| 25 |
} |
| 26 |
.chartjs-size-monitor-expand > div { |
| 27 |
position: absolute; |
| 28 |
width: 1000000px; |
| 29 |
height: 1000000px; |
| 30 |
left: 0; |
| 31 |
top: 0; |
| 32 |
} |
| 33 |
.chartjs-size-monitor-shrink > div { |
| 34 |
position: absolute; |
| 35 |
width: 200%; |
| 36 |
height: 200%; |
| 37 |
left: 0; |
| 38 |
top: 0; |
| 39 |
} |
| 40 |
|