]> git.proxmox.com Git - extjs.git/blame - extjs/packages/core/sass/src/util/PaintMonitor.scss
add extjs 6.0.1 sources
[extjs.git] / extjs / packages / core / sass / src / util / PaintMonitor.scss
CommitLineData
6527f429
DM
1/**\r
2 * @class Ext.util.PaintMonitor\r
3 */\r
4\r
5@-webkit-keyframes #{$prefix}paint-monitor-helper {\r
6 from {\r
7 zoom: 1\r
8 }\r
9 to {\r
10 zoom: 1\r
11 }\r
12}\r
13\r
14@keyframes #{$prefix}paint-monitor-helper {\r
15 from {\r
16 zoom: 1\r
17 }\r
18 to {\r
19 zoom: 1\r
20 }\r
21}\r
22\r
23.#{$prefix}paint-monitored {\r
24 position: relative;\r
25}\r
26\r
27.#{$prefix}paint-monitor {\r
28 width: 0 !important;\r
29 height: 0 !important;\r
30 visibility: hidden;\r
31\r
32 &.cssanimation {\r
33 -webkit-animation-duration: 0.0001ms;\r
34 -webkit-animation-name: #{$prefix}paint-monitor-helper;\r
35 animation-duration: 0.0001ms;\r
36 animation-name: #{$prefix}paint-monitor-helper;\r
37 }\r
38\r
39 &.overflowchange {\r
40 overflow: hidden;\r
41\r
42 &::after {\r
43 content: '';\r
44 display: block;\r
45 width: 1px !important;\r
46 height: 1px !important;\r
47 }\r
48 }\r
49}