OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2013 Google Inc. All rights reserved. | 2 * Copyright (C) 2013 Google Inc. All rights reserved. |
3 * | 3 * |
4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
6 * met: | 6 * met: |
7 * | 7 * |
8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
70 } | 70 } |
71 | 71 |
72 .layer-details-view table td:first-child { | 72 .layer-details-view table td:first-child { |
73 font-weight: bold; | 73 font-weight: bold; |
74 } | 74 } |
75 | 75 |
76 .layer-details-view .scroll-rect.active { | 76 .layer-details-view .scroll-rect.active { |
77 background-color: rgba(100, 100, 100, 0.2); | 77 background-color: rgba(100, 100, 100, 0.2); |
78 } | 78 } |
79 | 79 |
80 .paint-profiler-view canvas { | 80 .paint-profiler-canvas-container { |
81 z-index: 200; | 81 flex: auto; |
82 opacity: 0.8; | 82 position: relative; |
83 background-color: white; | |
84 } | 83 } |
85 | 84 |
86 .paint-profiler-view { | 85 .paint-profiler-overview { |
| 86 background-color: rgb(244, 244, 244); |
| 87 } |
| 88 |
| 89 .paint-profiler-pie-chart { |
| 90 width: 60px; |
| 91 height: 60px; |
| 92 padding: 2px; |
87 overflow: hidden; | 93 overflow: hidden; |
88 } | 94 } |
89 | 95 |
90 .paint-profiler-view .overview-grid-dividers-background, | 96 .paint-profiler-canvas-container canvas { |
91 .paint-profiler-view .overview-grid-window { | 97 z-index: 200; |
| 98 background-color: white; |
| 99 opacity: 0.95; |
| 100 height: 100%; |
| 101 width: 100%; |
| 102 } |
| 103 |
| 104 .paint-profiler-canvas-container .overview-grid-dividers-background, |
| 105 .paint-profiler-canvas-container .overview-grid-window { |
92 bottom: 0; | 106 bottom: 0; |
93 height: auto; | 107 height: auto; |
94 } | 108 } |
95 | 109 |
96 .paint-profiler-view .overview-grid-window-resizer { | 110 .paint-profiler-canvas-container .overview-grid-window-resizer { |
97 z-index: 2000; | 111 z-index: 2000; |
98 } | 112 } |
99 | |
100 .paint-profiler-view canvas { | |
101 height: 100%; | |
102 width: 100%; | |
103 } | |
OLD | NEW |