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