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 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
107 text-decoration: underline; | 107 text-decoration: underline; |
108 margin-left: auto; | 108 margin-left: auto; |
109 display: none; | 109 display: none; |
110 } | 110 } |
111 | 111 |
112 .sidebar-tree-item.selected .title-container > .save-link { | 112 .sidebar-tree-item.selected .title-container > .save-link { |
113 display: block; | 113 display: block; |
114 } | 114 } |
115 | 115 |
116 .cpu-profile-view { | 116 .cpu-profile-view { |
117 display: none; | 117 display: flex; |
118 overflow: hidden; | 118 overflow: hidden; |
119 } | 119 } |
120 | 120 |
121 .cpu-profile-view.visible { | |
122 display: flex; | |
123 } | |
124 | |
125 .cpu-profile-view .data-grid { | 121 .cpu-profile-view .data-grid { |
126 border: none; | 122 border: none; |
127 flex: auto; | 123 flex: auto; |
128 } | 124 } |
129 | 125 |
130 .cpu-profile-view .data-grid th.self-column, | 126 .cpu-profile-view .data-grid th.self-column, |
131 .cpu-profile-view .data-grid th.total-column { | 127 .cpu-profile-view .data-grid th.total-column { |
132 text-align: center; | 128 text-align: center; |
133 } | 129 } |
134 | 130 |
(...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
258 bottom: 0; | 254 bottom: 0; |
259 } | 255 } |
260 | 256 |
261 #cpu-profile-flame-chart-overview-grid .resources-dividers-label-bar { | 257 #cpu-profile-flame-chart-overview-grid .resources-dividers-label-bar { |
262 pointer-events: auto; | 258 pointer-events: auto; |
263 } | 259 } |
264 | 260 |
265 .cpu-profile-flame-chart-overview-pane { | 261 .cpu-profile-flame-chart-overview-pane { |
266 flex: 0 0 80px !important; | 262 flex: 0 0 80px !important; |
267 } | 263 } |
OLD | NEW |