| 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 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 68 } | 68 } |
| 69 | 69 |
| 70 .heap-snapshot-view .view { | 70 .heap-snapshot-view .view { |
| 71 display: none; | 71 display: none; |
| 72 } | 72 } |
| 73 | 73 |
| 74 .heap-snapshot-view .view.visible { | 74 .heap-snapshot-view .view.visible { |
| 75 display: block; | 75 display: block; |
| 76 } | 76 } |
| 77 | 77 |
| 78 .heap-snapshot-view .data-grid { |
| 79 border: none; |
| 80 } |
| 81 |
| 82 .heap-snapshot-view .data-grid table.data { |
| 83 background-image: none; |
| 84 } |
| 85 |
| 78 .heap-snapshot-view .data-grid tr:empty { | 86 .heap-snapshot-view .data-grid tr:empty { |
| 79 height: 16px; | 87 height: 16px; |
| 80 visibility: hidden; | 88 visibility: hidden; |
| 81 } | 89 } |
| 82 | 90 |
| 83 .heap-snapshot-view .data-grid { | 91 .heap-snapshot-view .data-grid tr:not(.filler):hover { |
| 84 border: none; | 92 background-color: rgba(0, 0, 0, 0.05); |
| 93 } |
| 94 |
| 95 .heap-snapshot-view .data-grid tr.selected { |
| 96 background-color: rgba(56, 121, 217, 0.1) !important; |
| 97 color: inherit; |
| 98 } |
| 99 |
| 100 .heap-snapshot-view .data-grid tr.parent.selected td.disclosure::before { |
| 101 background-color: rgb(110, 110, 110); |
| 85 } | 102 } |
| 86 | 103 |
| 87 .heap-snapshot-view .data-grid td.count-column { | 104 .heap-snapshot-view .data-grid td.count-column { |
| 88 text-align: right; | 105 text-align: right; |
| 89 } | 106 } |
| 90 | 107 |
| 91 .heap-snapshot-view .data-grid td.addedCount-column { | 108 .heap-snapshot-view .data-grid td.addedCount-column { |
| 92 text-align: right; | 109 text-align: right; |
| 93 } | 110 } |
| 94 | 111 |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 145 } | 162 } |
| 146 | 163 |
| 147 .heap-snapshot-view .console-formatted-string { | 164 .heap-snapshot-view .console-formatted-string { |
| 148 white-space: nowrap; | 165 white-space: nowrap; |
| 149 } | 166 } |
| 150 | 167 |
| 151 .heap-snapshot-view .console-formatted-id { | 168 .heap-snapshot-view .console-formatted-id { |
| 152 color: grey; | 169 color: grey; |
| 153 } | 170 } |
| 154 | 171 |
| 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 { | 172 .heap-snapshot-view .delimiter { |
| 164 height: 24px; | 173 height: 24px; |
| 165 background-color: #d6dde5; | 174 background-color: #d6dde5; |
| 166 } | 175 } |
| 167 | 176 |
| 168 .heap-snapshot-view .data-grid { | 177 .heap-snapshot-view .data-grid { |
| 169 position: absolute; | 178 position: absolute; |
| 170 top: 0; | 179 top: 0; |
| 171 left: 0; | 180 left: 0; |
| 172 right: 0; | 181 right: 0; |
| (...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 286 border-bottom: 1px solid rgba(0, 0, 0, 0.3); | 295 border-bottom: 1px solid rgba(0, 0, 0, 0.3); |
| 287 } | 296 } |
| 288 | 297 |
| 289 .heap-recording-overview-canvas { | 298 .heap-recording-overview-canvas { |
| 290 position: absolute; | 299 position: absolute; |
| 291 top: 20px; | 300 top: 20px; |
| 292 left: 0; | 301 left: 0; |
| 293 right: 0; | 302 right: 0; |
| 294 bottom: 0; | 303 bottom: 0; |
| 295 } | 304 } |
| OLD | NEW |