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 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
107 | 107 |
108 .heap-snapshot-view .heap-tracking-overview { | 108 .heap-snapshot-view .heap-tracking-overview { |
109 flex: 0 0 80px; | 109 flex: 0 0 80px; |
110 height: 80px; | 110 height: 80px; |
111 } | 111 } |
112 | 112 |
113 .heap-snapshot-view .retaining-paths-view { | 113 .heap-snapshot-view .retaining-paths-view { |
114 overflow: hidden; | 114 overflow: hidden; |
115 } | 115 } |
116 | 116 |
117 .heap-snapshot-view .retainers-view-header { | 117 .heap-snapshot-view .heap-snapshot-view-resizer { |
118 background-image: url(Images/statusbarResizerVertical.png); | 118 background-image: url(Images/statusbarResizerVertical.png); |
119 background-color: rgb(236, 236, 236); | 119 background-color: rgb(236, 236, 236); |
120 border-bottom: 1px solid rgb(179, 179, 179); | 120 border-bottom: 1px solid rgb(179, 179, 179); |
121 background-repeat: no-repeat; | 121 background-repeat: no-repeat; |
122 background-position: right center, center; | 122 background-position: right center, center; |
123 flex: 0 0 21px; | 123 flex: 0 0 21px; |
124 } | 124 } |
125 | 125 |
126 .heap-snapshot-view .retainers-view-header .title > span { | 126 .heap-snapshot-view .heap-snapshot-view-resizer .title > span { |
127 display: inline-block; | 127 display: inline-block; |
128 padding-top: 3px; | 128 padding-top: 3px; |
129 vertical-align: middle; | 129 vertical-align: middle; |
130 margin-left: 4px; | 130 margin-left: 4px; |
131 margin-right: 8px; | 131 margin-right: 8px; |
132 } | 132 } |
133 | 133 |
134 .heap-snapshot-view .retainers-view-header * { | 134 .heap-snapshot-view .heap-snapshot-view-resizer * { |
135 pointer-events: none; | 135 pointer-events: none; |
136 } | 136 } |
137 | 137 |
138 .heap-snapshot-view tr:not(.selected) td.object-column span.highlight { | 138 .heap-snapshot-view tr:not(.selected) td.object-column span.highlight { |
139 background-color: rgb(255, 255, 200); | 139 background-color: rgb(255, 255, 200); |
140 } | 140 } |
141 | 141 |
142 .heap-snapshot-view td.object-column span.grayed { | 142 .heap-snapshot-view td.object-column span.grayed { |
143 color: gray; | 143 color: gray; |
144 } | 144 } |
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
202 .heap-snapshot-stats-name, | 202 .heap-snapshot-stats-name, |
203 .heap-snapshot-stats-size { | 203 .heap-snapshot-stats-size { |
204 display: inline-block; | 204 display: inline-block; |
205 margin-left: 6px; | 205 margin-left: 6px; |
206 } | 206 } |
207 | 207 |
208 .heap-snapshot-stats-size { | 208 .heap-snapshot-stats-size { |
209 float: right; | 209 float: right; |
210 text-align: right; | 210 text-align: right; |
211 } | 211 } |
OLD | NEW |