| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2006, 2007, 2008 Apple Inc. All rights reserved. | 2 * Copyright (C) 2006, 2007, 2008 Apple Inc. All rights reserved. |
| 3 * Copyright (C) 2009 Anthony Ricaud <rik@webkit.org> | 3 * Copyright (C) 2009 Anthony Ricaud <rik@webkit.org> |
| 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 | 6 * modification, are permitted provided that the following conditions |
| 7 * are met: | 7 * are met: |
| 8 * | 8 * |
| 9 * 1. Redistributions of source code must retain the above copyright | 9 * 1. 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 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 66 | 66 |
| 67 .profiles-toolbar { | 67 .profiles-toolbar { |
| 68 display: flex; | 68 display: flex; |
| 69 background-color: #f3f3f3; | 69 background-color: #f3f3f3; |
| 70 flex: 0 0 25px; | 70 flex: 0 0 25px; |
| 71 flex-direction: row; | 71 flex-direction: row; |
| 72 border-bottom: 1px solid rgb(202, 202, 202); | 72 border-bottom: 1px solid rgb(202, 202, 202); |
| 73 } | 73 } |
| 74 | 74 |
| 75 .profiles-sidebar-tree-box { | 75 .profiles-sidebar-tree-box { |
| 76 overflow: auto; | |
| 77 flex: auto; | 76 flex: auto; |
| 78 } | 77 } |
| 79 | 78 |
| 80 .profile-view { | 79 .profile-view { |
| 81 display: flex; | 80 display: flex; |
| 82 overflow: hidden; | 81 overflow: hidden; |
| 83 } | 82 } |
| 84 | 83 |
| 85 .profile-view .data-grid { | 84 .profile-view .data-grid { |
| 86 border: none; | 85 border: none; |
| (...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 218 bottom: 0; | 217 bottom: 0; |
| 219 } | 218 } |
| 220 | 219 |
| 221 #cpu-profile-flame-chart-overview-grid .resources-dividers-label-bar { | 220 #cpu-profile-flame-chart-overview-grid .resources-dividers-label-bar { |
| 222 pointer-events: auto; | 221 pointer-events: auto; |
| 223 } | 222 } |
| 224 | 223 |
| 225 .cpu-profile-flame-chart-overview-pane { | 224 .cpu-profile-flame-chart-overview-pane { |
| 226 flex: 0 0 80px !important; | 225 flex: 0 0 80px !important; |
| 227 } | 226 } |
| OLD | NEW |