OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2009 Google Inc. All rights reserved. | 2 * Copyright (C) 2009 Google Inc. All rights reserved. |
3 * Copyright (C) 2010 Apple Inc. All rights reserved. | 3 * Copyright (C) 2010 Apple Inc. All rights reserved. |
4 * | 4 * |
5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
6 * modification, are permitted provided that the following conditions are | 6 * modification, are permitted provided that the following conditions are |
7 * met: | 7 * met: |
8 * | 8 * |
9 * * Redistributions of source code must retain the above copyright | 9 * * Redistributions of source code must retain the above copyright |
10 * notice, this list of conditions and the following disclaimer. | 10 * notice, this list of conditions and the following disclaimer. |
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
57 | 57 |
58 .heap-snapshot-view .data-grid tr:empty { | 58 .heap-snapshot-view .data-grid tr:empty { |
59 height: 16px; | 59 height: 16px; |
60 visibility: hidden; | 60 visibility: hidden; |
61 } | 61 } |
62 | 62 |
63 .heap-snapshot-view .data-grid tr.selected span { | 63 .heap-snapshot-view .data-grid tr.selected span { |
64 color: inherit; | 64 color: inherit; |
65 } | 65 } |
66 | 66 |
67 .heap-snapshot-view .data-grid td.count-column { | 67 .heap-snapshot-view .data-grid td.numeric-column { |
68 text-align: right; | 68 text-align: right; |
69 } | 69 } |
70 | 70 |
71 .heap-snapshot-view .data-grid td.addedCount-column { | |
72 text-align: right; | |
73 } | |
74 | |
75 .heap-snapshot-view .data-grid td.removedCount-column { | |
76 text-align: right; | |
77 } | |
78 | |
79 .heap-snapshot-view .data-grid td.countDelta-column { | |
80 text-align: right; | |
81 } | |
82 | |
83 .heap-snapshot-view .data-grid td.addedSize-column { | |
84 text-align: right; | |
85 } | |
86 | |
87 .heap-snapshot-view .data-grid td.removedSize-column { | |
88 text-align: right; | |
89 } | |
90 | |
91 .heap-snapshot-view .data-grid td.sizeDelta-column { | |
92 text-align: right; | |
93 } | |
94 | |
95 .heap-snapshot-view .data-grid td.shallowSize-column { | |
96 text-align: right; | |
97 } | |
98 | |
99 .heap-snapshot-view .data-grid td.retainedSize-column { | |
100 text-align: right; | |
101 } | |
102 | |
103 .heap-snapshot-view .data-grid td.distanceToWindow-column { | |
104 text-align: right; | |
105 } | |
106 | |
107 .heap-snapshot-view .data-grid div.heap-snapshot-multiple-values { | 71 .heap-snapshot-view .data-grid div.heap-snapshot-multiple-values { |
108 float: right; | 72 float: right; |
109 } | 73 } |
110 | 74 |
111 .heap-snapshot-view .data-grid span.percent-column { | 75 .heap-snapshot-view .data-grid span.percent-column { |
112 color: #999; | 76 color: #999; |
113 width: 32px; | 77 width: 32px; |
114 display: inline-block; | 78 display: inline-block; |
115 } | 79 } |
116 | 80 |
(...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
238 .heap-snapshot-stats-name, | 202 .heap-snapshot-stats-name, |
239 .heap-snapshot-stats-size { | 203 .heap-snapshot-stats-size { |
240 display: inline-block; | 204 display: inline-block; |
241 margin-left: 6px; | 205 margin-left: 6px; |
242 } | 206 } |
243 | 207 |
244 .heap-snapshot-stats-size { | 208 .heap-snapshot-stats-size { |
245 float: right; | 209 float: right; |
246 text-align: right; | 210 text-align: right; |
247 } | 211 } |
OLD | NEW |