OLD | NEW |
---|---|
(Empty) | |
1 .profiler-log-view { | |
dgozman
2016/09/22 16:35:34
Missing copyright.
| |
2 overflow: auto; | |
3 } | |
4 .paint-profiler-overview .banner { | |
dgozman
2016/09/22 16:35:34
nit: empty line before selector
| |
5 z-index: 500; | |
6 } | |
7 | |
8 .paint-profiler-canvas-container { | |
9 flex: auto; | |
10 position: relative; | |
11 } | |
12 | |
13 .paint-profiler-overview { | |
14 background-color: #eee; | |
15 } | |
16 | |
17 .paint-profiler-pie-chart { | |
18 width: 60px !important; | |
19 height: 60px !important; | |
20 padding: 2px; | |
21 overflow: hidden; | |
22 font-size: 10px; | |
23 } | |
24 | |
25 .paint-profiler-canvas-container canvas { | |
26 z-index: 200; | |
27 background-color: white; | |
28 opacity: 0.95; | |
29 height: 100%; | |
30 width: 100%; | |
31 } | |
32 | |
33 .paint-profiler-canvas-container .overview-grid-dividers-background, | |
34 .paint-profiler-canvas-container .overview-grid-window { | |
35 bottom: 0; | |
36 height: auto; | |
37 } | |
38 | |
39 .paint-profiler-canvas-container .overview-grid-window-resizer { | |
40 z-index: 2000; | |
41 } | |
42 | |
43 .paint-profiler-image-view { | |
44 overflow: hidden; | |
45 } | |
46 | |
47 .paint-profiler-image-view .paint-profiler-image-container { | |
48 -webkit-transform-origin: 0 0; | |
49 } | |
50 | |
51 .paint-profiler-image-view .paint-profiler-image-container div { | |
52 border-color: rgba(100, 100, 100, 0.4); | |
53 border-style: solid; | |
54 z-index: 100; | |
55 position: absolute; | |
56 top: 0; | |
57 left: 0; | |
58 } | |
59 | |
60 .paint-profiler-image-view img { | |
61 border: solid 1px black; | |
62 } | |
OLD | NEW |