| 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 16 matching lines...) Expand all Loading... |
| 27 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 27 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 28 */ | 28 */ |
| 29 | 29 |
| 30 /* Profiler Style */ | 30 /* Profiler Style */ |
| 31 | 31 |
| 32 #profile-views { | 32 #profile-views { |
| 33 flex: auto; | 33 flex: auto; |
| 34 position: relative; | 34 position: relative; |
| 35 } | 35 } |
| 36 | 36 |
| 37 .profile-view .data-grid table.data { | 37 .profile-view .data-grid .data-grid-odd-row { |
| 38 background: white; | 38 background: transparent; |
| 39 } | 39 } |
| 40 | 40 |
| 41 .profile-view .data-grid tr:not(.selected) .highlight { | 41 .profile-view .data-grid tr:not(.selected) .highlight { |
| 42 background-color: rgb(255, 230, 179); | 42 background-color: rgb(255, 230, 179); |
| 43 } | 43 } |
| 44 | 44 |
| 45 .profile-view .data-grid tr:hover td:not(.bottom-filler-td) { | 45 .profile-view .data-grid tr:hover td:not(.bottom-filler-td) { |
| 46 background-color: rgba(0, 0, 0, 0.1); | 46 background-color: rgba(0, 0, 0, 0.1); |
| 47 } | 47 } |
| 48 | 48 |
| (...skipping 177 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 226 bottom: 0; | 226 bottom: 0; |
| 227 } | 227 } |
| 228 | 228 |
| 229 #cpu-profile-flame-chart-overview-grid .resources-dividers-label-bar { | 229 #cpu-profile-flame-chart-overview-grid .resources-dividers-label-bar { |
| 230 pointer-events: auto; | 230 pointer-events: auto; |
| 231 } | 231 } |
| 232 | 232 |
| 233 .cpu-profile-flame-chart-overview-pane { | 233 .cpu-profile-flame-chart-overview-pane { |
| 234 flex: 0 0 80px !important; | 234 flex: 0 0 80px !important; |
| 235 } | 235 } |
| OLD | NEW |