| 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 15 matching lines...) Expand all Loading... |
| 26 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | 26 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 27 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 27 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 28 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 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. | 29 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 30 */ | 30 */ |
| 31 | 31 |
| 32 .heap-snapshot-sidebar-tree-item .icon { | 32 .heap-snapshot-sidebar-tree-item .icon { |
| 33 content: url(Images/profileIcon.png); | 33 content: url(Images/profileIcon.png); |
| 34 } | 34 } |
| 35 | 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 { | 36 .heap-snapshot-sidebar-tree-item.small .icon { |
| 53 content: url(Images/profileSmallIcon.png); | 37 content: url(Images/profileSmallIcon.png); |
| 54 } | 38 } |
| 55 | 39 |
| 56 .heap-snapshot-view { | 40 .heap-snapshot-view { |
| 57 display: none; | 41 display: none; |
| 58 overflow: hidden; | 42 overflow: hidden; |
| 59 position: absolute; | 43 position: absolute; |
| 60 top: 0; | 44 top: 0; |
| 61 left: 0; | 45 left: 0; |
| 62 right: 0; | 46 right: 0; |
| 63 bottom: 0; | 47 bottom: 0; |
| 64 } | 48 } |
| 65 | 49 |
| 66 .heap-snapshot-view.visible { | 50 .heap-snapshot-view .pie-chart { |
| 67 display: block; | 51 margin: 12px 30px; |
| 68 } | 52 } |
| 69 | 53 |
| 70 .heap-snapshot-view .view { | 54 .heap-snapshot-view .data-grid { |
| 71 display: none; | 55 border: none; |
| 72 } | |
| 73 | |
| 74 .heap-snapshot-view .view.visible { | |
| 75 display: block; | |
| 76 } | 56 } |
| 77 | 57 |
| 78 .heap-snapshot-view .data-grid tr:empty { | 58 .heap-snapshot-view .data-grid tr:empty { |
| 79 height: 16px; | 59 height: 16px; |
| 80 visibility: hidden; | 60 visibility: hidden; |
| 81 } | 61 } |
| 82 | 62 |
| 83 .heap-snapshot-view .data-grid { | 63 .heap-snapshot-view .data-grid tr.selected span { |
| 84 border: none; | 64 color: inherit; |
| 85 } | 65 } |
| 86 | 66 |
| 87 .heap-snapshot-view .data-grid td.count-column { | 67 .heap-snapshot-view .data-grid td.count-column { |
| 88 text-align: right; | 68 text-align: right; |
| 89 } | 69 } |
| 90 | 70 |
| 91 .heap-snapshot-view .data-grid td.addedCount-column { | 71 .heap-snapshot-view .data-grid td.addedCount-column { |
| 92 text-align: right; | 72 text-align: right; |
| 93 } | 73 } |
| 94 | 74 |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 141 } | 121 } |
| 142 | 122 |
| 143 .detached-dom-tree-node { | 123 .detached-dom-tree-node { |
| 144 background-color: #FF9999; | 124 background-color: #FF9999; |
| 145 } | 125 } |
| 146 | 126 |
| 147 .heap-snapshot-view .console-formatted-string { | 127 .heap-snapshot-view .console-formatted-string { |
| 148 white-space: nowrap; | 128 white-space: nowrap; |
| 149 } | 129 } |
| 150 | 130 |
| 151 .heap-snapshot-view .console-formatted-id { | 131 .heap-snapshot-view tr:not(.selected) .console-formatted-id { |
| 152 color: grey; | 132 color: grey; |
| 153 } | 133 } |
| 154 | 134 |
| 155 .heap-snapshot-view .data-grid tr.selected * { | |
| 156 color: inherit; | |
| 157 } | |
| 158 | |
| 159 .heap-snapshot-view .data-grid:focus tr.selected * { | |
| 160 color: white; | |
| 161 } | |
| 162 | |
| 163 .heap-snapshot-view .delimiter { | 135 .heap-snapshot-view .delimiter { |
| 164 height: 24px; | 136 height: 24px; |
| 165 background-color: #d6dde5; | 137 background-color: #d6dde5; |
| 166 } | 138 } |
| 167 | 139 |
| 168 .heap-snapshot-view .data-grid { | 140 .heap-snapshot-view .data-grid { |
| 169 position: absolute; | 141 flex: auto; |
| 170 top: 0; | |
| 171 left: 0; | |
| 172 right: 0; | |
| 173 bottom: 0; | |
| 174 } | 142 } |
| 175 | 143 |
| 176 .heap-snapshot-view .views-container { | 144 .heap-snapshot-view .heap-tracking-overview { |
| 177 position: absolute; | 145 flex: 0 0 80px; |
| 178 top: 0; | 146 height: 80px; |
| 179 left: 0; | |
| 180 right: 0; | |
| 181 bottom: 173px; | |
| 182 } | |
| 183 | |
| 184 .reserve-80px-at-top { | |
| 185 top: 80px !important; | |
| 186 } | |
| 187 | |
| 188 .heap-snapshot-view .views-container .view { | |
| 189 position: absolute; | |
| 190 top: 0; | |
| 191 left: 0; | |
| 192 right: 0; | |
| 193 bottom: 0; | |
| 194 } | 147 } |
| 195 | 148 |
| 196 .heap-snapshot-view .retaining-paths-view { | 149 .heap-snapshot-view .retaining-paths-view { |
| 197 height: 150px; | 150 overflow: hidden; |
| 198 position: absolute; | |
| 199 bottom: 0; | |
| 200 left: 0; | |
| 201 right: 0; | |
| 202 } | |
| 203 | |
| 204 .heap-snapshot-view .class-view-grid { | |
| 205 top: 22px; | |
| 206 } | |
| 207 | |
| 208 .heap-snapshot-view .class-view-toolbar { | |
| 209 height: 22px; | |
| 210 background-color: #DDD; | |
| 211 display: block; | |
| 212 position: absolute; | |
| 213 left: 0; | |
| 214 right: 0; | |
| 215 top: 0; | |
| 216 } | |
| 217 | |
| 218 .heap-snapshot-view .class-view-toolbar input.class-name-filter { | |
| 219 width: 200px; | |
| 220 height: 18px; | |
| 221 font-size: 11px; | |
| 222 padding: 2px; | |
| 223 margin: 2px 10px; | |
| 224 background-color: white; | |
| 225 border: solid 1px #BBB; | |
| 226 } | 151 } |
| 227 | 152 |
| 228 .heap-snapshot-view .retainers-view-header { | 153 .heap-snapshot-view .retainers-view-header { |
| 229 background-image: url(Images/statusbarResizerVertical.png), -webkit-linear-g
radient(rgb(253,253,253), rgb(230,230,230) 75%, rgb(230,230,230)); | 154 background-image: url(Images/statusbarResizerVertical.png); |
| 230 border-top: 1px solid rgb(202, 202, 202); | 155 background-color: rgb(236, 236, 236); |
| 156 border-bottom: 1px solid rgb(179, 179, 179); |
| 231 background-repeat: no-repeat; | 157 background-repeat: no-repeat; |
| 232 background-position: right center, center; | 158 background-position: right center, center; |
| 233 height: 23px; | 159 flex: 0 0 21px; |
| 234 display: block; | |
| 235 position: absolute; | |
| 236 left: 0; | |
| 237 right: 0; | |
| 238 bottom: 150px; | |
| 239 } | 160 } |
| 240 | 161 |
| 241 .heap-snapshot-view .retainers-view-header .title > span { | 162 .heap-snapshot-view .retainers-view-header .title > span { |
| 242 display: inline-block; | 163 display: inline-block; |
| 243 padding-top: 3px; | 164 padding-top: 3px; |
| 244 vertical-align: middle; | 165 vertical-align: middle; |
| 245 margin-left: 4px; | 166 margin-left: 4px; |
| 246 margin-right: 8px; | 167 margin-right: 8px; |
| 247 } | 168 } |
| 248 | 169 |
| 170 .heap-snapshot-view .retainers-view-header * { |
| 171 pointer-events: none; |
| 172 } |
| 173 |
| 249 .heap-snapshot-view tr:not(.selected) td.object-column span.highlight { | 174 .heap-snapshot-view tr:not(.selected) td.object-column span.highlight { |
| 250 background-color: rgb(255, 255, 200); | 175 background-color: rgb(255, 255, 200); |
| 251 } | 176 } |
| 252 | 177 |
| 253 .heap-snapshot-view td.object-column span.grayed { | 178 .heap-snapshot-view td.object-column span.grayed { |
| 254 color: gray; | 179 color: gray; |
| 255 } | 180 } |
| 256 | 181 |
| 257 .heap-snapshot-help-status-bar-item .glyph { | |
| 258 -webkit-mask-position: -160px -2px; | |
| 259 } | |
| 260 | |
| 261 table.heap-snapshot-help { | 182 table.heap-snapshot-help { |
| 262 border-spacing: 12px 2px; | 183 border-spacing: 12px 2px; |
| 263 } | 184 } |
| 264 | 185 |
| 265 .cycled-ancessor-node { | 186 .cycled-ancessor-node { |
| 266 opacity: 0.6; | 187 opacity: 0.6; |
| 267 } | 188 } |
| 268 | 189 |
| 269 #heap-recording-view .heap-snapshot-view { | 190 #heap-recording-view .heap-snapshot-view { |
| 270 top: 80px; | 191 top: 80px; |
| (...skipping 15 matching lines...) Expand all Loading... |
| 286 border-bottom: 1px solid rgba(0, 0, 0, 0.3); | 207 border-bottom: 1px solid rgba(0, 0, 0, 0.3); |
| 287 } | 208 } |
| 288 | 209 |
| 289 .heap-recording-overview-canvas { | 210 .heap-recording-overview-canvas { |
| 290 position: absolute; | 211 position: absolute; |
| 291 top: 20px; | 212 top: 20px; |
| 292 left: 0; | 213 left: 0; |
| 293 right: 0; | 214 right: 0; |
| 294 bottom: 0; | 215 bottom: 0; |
| 295 } | 216 } |
| 217 |
| 218 .heap-snapshot-stats-legend { |
| 219 margin-left: 24px; |
| 220 } |
| 221 |
| 222 .heap-snapshot-stats-legend > div { |
| 223 margin-top: 1px; |
| 224 width: 170px; |
| 225 } |
| 226 |
| 227 .heap-snapshot-stats-swatch { |
| 228 display: inline-block; |
| 229 width: 10px; |
| 230 height: 10px; |
| 231 border: 1px solid rgba(100, 100, 100, 0.3); |
| 232 } |
| 233 |
| 234 .heap-snapshot-stats-swatch.heap-snapshot-stats-empty-swatch { |
| 235 border: none; |
| 236 } |
| 237 |
| 238 .heap-snapshot-stats-name, |
| 239 .heap-snapshot-stats-size { |
| 240 display: inline-block; |
| 241 margin-left: 6px; |
| 242 } |
| 243 |
| 244 .heap-snapshot-stats-size { |
| 245 float: right; |
| 246 text-align: right; |
| 247 } |
| OLD | NEW |