initial import
[vuplus_webkit] / Source / WebCore / inspector / front-end / heapProfiler.css
1 /*
2  * Copyright (C) 2009 Google Inc. All rights reserved.
3  * Copyright (C) 2010 Apple Inc. All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions are
7  * met:
8  *
9  *     * Redistributions of source code must retain the above copyright
10  * notice, this list of conditions and the following disclaimer.
11  *     * Redistributions in binary form must reproduce the above
12  * copyright notice, this list of conditions and the following disclaimer
13  * in the documentation and/or other materials provided with the
14  * distribution.
15  *     * Neither the name of Google Inc. nor the names of its
16  * contributors may be used to endorse or promote products derived from
17  * this software without specific prior written permission.
18  *
19  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
20  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
21  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
22  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
23  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
24  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
25  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
26  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
27  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
28  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
29  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30  */
31
32 .heap-snapshot-sidebar-tree-item .icon {
33     content: url(Images/profileIcon.png);
34 }
35
36 .heap-snapshot-sidebar-tree-item.wait .icon {
37     content: url(Images/spinnerActive.gif);
38 }
39
40 .heap-snapshot-sidebar-tree-item.wait.selected .icon {
41     content: url(Images/spinnerActiveSelected.gif);
42 }
43
44 body.inactive .heap-snapshot-sidebar-tree-item.wait .icon {
45     content: url(Images/spinnerInactive.gif);
46 }
47
48 body.inactive .heap-snapshot-sidebar-tree-item.wait.selected .icon {
49     content: url(Images/spinnerInactiveSelected.gif);
50 }
51
52 .heap-snapshot-sidebar-tree-item.small .icon {
53     content: url(Images/profileSmallIcon.png);
54 }
55
56 .detailed-heapshot-view {
57     display: none;
58     overflow: hidden;
59     position: absolute;
60     top: 0;
61     left: 0;
62     right: 0;
63     bottom: 0;
64 }
65
66 .detailed-heapshot-view.visible {
67     display: block;
68 }
69
70 .detailed-heapshot-view .view {
71     display: none;
72 }
73
74 .detailed-heapshot-view .view.visible {
75     display: block;
76 }
77
78 .detailed-heapshot-view .data-grid {
79     border: none;
80 }
81
82 .detailed-heapshot-view .data-grid td.count-column {
83     text-align: right;
84 }
85
86 .detailed-heapshot-view .data-grid td.addedCount-column {
87     text-align: right;
88 }
89
90 .detailed-heapshot-view .data-grid td.removedCount-column {
91     text-align: right;
92 }
93
94 .detailed-heapshot-view .data-grid td.countDelta-column {
95     text-align: right;
96 }
97
98 .detailed-heapshot-view .data-grid td.addedSize-column {
99     text-align: right;
100 }
101
102 .detailed-heapshot-view .data-grid td.removedSize-column {
103     text-align: right;
104 }
105
106 .detailed-heapshot-view .data-grid td.sizeDelta-column {
107     text-align: right;
108 }
109
110 .detailed-heapshot-view .data-grid td.shallowSize-column {
111     text-align: right;
112 }
113
114 .detailed-heapshot-view .data-grid td.retainedSize-column {
115     text-align: right;
116 }
117
118 .detailed-heapshot-view .console-formatted-object, .console-formatted-node {
119     display: inline;
120     position: static;
121 }
122
123 .detailed-heapshot-view .console-formatted-string {
124     white-space: nowrap;
125 }
126
127 .detailed-heapshot-view .data-grid tr.selected * {
128     color: inherit;
129 }
130
131 .detailed-heapshot-view .data-grid:focus tr.selected * {
132     color: white;
133 }
134
135 .detailed-heapshot-view .delimiter {
136     height: 24px;
137     background-color: #d6dde5;
138 }
139
140 .detailed-heapshot-view .data-grid {
141     position: absolute;
142     top: 0;
143     left: 0;
144     right: 0;
145     bottom: 0;
146 }
147
148 .detailed-heapshot-view .views-container {
149     position: absolute;
150     top: 0;
151     left: 0;
152     right: 0;
153     bottom: 173px;
154 }
155
156 .detailed-heapshot-view .views-container .view {
157     position: absolute;
158     top: 0;
159     left: 0;
160     right: 0;
161     bottom: 0;
162 }
163
164 .detailed-heapshot-view .retaining-paths-view {
165     height: 150px;
166     position: absolute;
167     bottom: 0;
168     left: 0;
169     right: 0;
170 }
171
172 .detailed-heapshot-view .retainers-view-header {
173     background-image: url(Images/statusbarResizerVertical.png), url(Images/statusbarBackground.png);
174     background-repeat: no-repeat, repeat-x;
175     background-position: right center, center;
176     cursor: row-resize;
177     height: 23px;
178     font: -webkit-small-control;
179     font-weight: bold;
180     color: rgb(48, 48, 48);
181     text-shadow: rgba(255, 255, 255, 0.75) 0 1px 0;
182     display: block;
183     position: absolute;
184     left: 0;
185     right: 0;
186     bottom: 150px;
187 }
188
189 .detailed-heapshot-view .retainers-view-header .title > span {
190     display: inline-block;
191     padding-top: 3px;
192     vertical-align: middle;
193     margin-left: 4px;
194     margin-right: 8px;
195 }
196
197 .heapshot-help-status-bar-item .glyph {
198     -webkit-mask-position: -160px 0;
199 }
200
201 table.heapshot-help {
202     border-spacing: 12px 2px;
203 }
204
205 div.retaining-paths-view td.path-column div:hover {
206     text-decoration: underline;
207     color: blue;
208 }