| 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 156 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 167 } | 167 } |
| 168 | 168 |
| 169 .resource-timing-view.visible { | 169 .resource-timing-view.visible { |
| 170 display: block; | 170 display: block; |
| 171 } | 171 } |
| 172 | 172 |
| 173 .resource-timing-view .network-timing-table { | 173 .resource-timing-view .network-timing-table { |
| 174 width: 100%; | 174 width: 100%; |
| 175 } | 175 } |
| 176 | 176 |
| 177 .network-filters-header { | |
| 178 flex: 0 0 23px; | |
| 179 padding-right: 4px; | |
| 180 } | |
| 181 | |
| 182 .network-filters-header .filter-text-filter { | |
| 183 flex-grow: 1; | |
| 184 max-width: 312px; | |
| 185 } | |
| 186 | |
| 187 #network-overview-container { | 177 #network-overview-container { |
| 188 overflow: hidden; | 178 overflow: hidden; |
| 189 flex: auto; | 179 flex: auto; |
| 190 display: flex; | 180 display: flex; |
| 191 position: relative; | 181 position: relative; |
| 192 border-bottom: 1px solid #CDCDCD; | 182 border-bottom: 1px solid #CDCDCD; |
| 193 } | 183 } |
| 194 | 184 |
| 195 .network-overview-canvas-container { | 185 .network-overview-canvas-container { |
| 196 position: absolute; | 186 position: absolute; |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 238 .request-view.html iframe { | 228 .request-view.html iframe { |
| 239 width: 100%; | 229 width: 100%; |
| 240 height: 100%; | 230 height: 100%; |
| 241 position: absolute; | 231 position: absolute; |
| 242 } | 232 } |
| 243 | 233 |
| 244 .network-film-strip { | 234 .network-film-strip { |
| 245 border-bottom: solid 1px #cdcdcd; | 235 border-bottom: solid 1px #cdcdcd; |
| 246 flex: none !important; | 236 flex: none !important; |
| 247 } | 237 } |
| OLD | NEW |