| 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 120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 131 } | 131 } |
| 132 | 132 |
| 133 .heap-recording-overview-canvas { | 133 .heap-recording-overview-canvas { |
| 134 position: absolute; | 134 position: absolute; |
| 135 top: 20px; | 135 top: 20px; |
| 136 left: 0; | 136 left: 0; |
| 137 right: 0; | 137 right: 0; |
| 138 bottom: 0; | 138 bottom: 0; |
| 139 } | 139 } |
| 140 | 140 |
| 141 .heap-snapshot-statistics-view { |
| 142 overflow: auto; |
| 143 } |
| 144 |
| 141 .heap-snapshot-stats-pie-chart { | 145 .heap-snapshot-stats-pie-chart { |
| 142 margin: 12px 30px; | 146 margin: 12px 30px; |
| 147 flex-shrink: 0; |
| 143 } | 148 } |
| 144 | 149 |
| 145 .heap-snapshot-stats-legend { | 150 .heap-snapshot-stats-legend { |
| 146 margin-left: 24px; | 151 margin-left: 24px; |
| 152 flex-shrink: 0; |
| 147 } | 153 } |
| 148 | 154 |
| 149 .heap-snapshot-stats-legend > div { | 155 .heap-snapshot-stats-legend > div { |
| 150 margin-top: 1px; | 156 margin-top: 1px; |
| 151 width: 170px; | 157 width: 170px; |
| 152 } | 158 } |
| 153 | 159 |
| 154 .heap-snapshot-stats-swatch { | 160 .heap-snapshot-stats-swatch { |
| 155 display: inline-block; | 161 display: inline-block; |
| 156 width: 10px; | 162 width: 10px; |
| (...skipping 23 matching lines...) Expand all Loading... |
| 180 padding: 2px; | 186 padding: 2px; |
| 181 } | 187 } |
| 182 | 188 |
| 183 .heap-allocation-stack .stack-frame .devtools-link { | 189 .heap-allocation-stack .stack-frame .devtools-link { |
| 184 color: rgb(33%, 33%, 33%); | 190 color: rgb(33%, 33%, 33%); |
| 185 } | 191 } |
| 186 | 192 |
| 187 .no-heap-allocation-stack { | 193 .no-heap-allocation-stack { |
| 188 padding: 5px; | 194 padding: 5px; |
| 189 } | 195 } |
| OLD | NEW |