| 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 167 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 178 | 178 |
| 179 #network-overview-container { | 179 #network-overview-container { |
| 180 overflow: hidden; | 180 overflow: hidden; |
| 181 flex: auto; | 181 flex: auto; |
| 182 display: flex; | 182 display: flex; |
| 183 flex-direction: column; | 183 flex-direction: column; |
| 184 position: relative; | 184 position: relative; |
| 185 border-bottom: 1px solid #CDCDCD; | 185 border-bottom: 1px solid #CDCDCD; |
| 186 } | 186 } |
| 187 | 187 |
| 188 #network-overview-container canvas { |
| 189 width: 100%; |
| 190 height: 100%; |
| 191 } |
| 192 |
| 188 #network-overview-grid .resources-dividers-label-bar { | 193 #network-overview-grid .resources-dividers-label-bar { |
| 189 pointer-events: auto; | 194 pointer-events: auto; |
| 190 } | 195 } |
| 191 | 196 |
| 192 .network .network-overview { | 197 .network .network-overview { |
| 193 flex: 0 0 100px; | 198 flex: 0 0 100px; |
| 194 } | 199 } |
| 195 | 200 |
| 196 .network-overview .overview-grid-window, | 201 .network-overview .overview-grid-window, |
| 197 .network-overview .overview-grid-dividers-background { | 202 .network-overview .overview-grid-dividers-background { |
| (...skipping 19 matching lines...) Expand all Loading... |
| 217 .request-view.html iframe { | 222 .request-view.html iframe { |
| 218 width: 100%; | 223 width: 100%; |
| 219 height: 100%; | 224 height: 100%; |
| 220 position: absolute; | 225 position: absolute; |
| 221 } | 226 } |
| 222 | 227 |
| 223 .network-film-strip { | 228 .network-film-strip { |
| 224 border-bottom: solid 1px #cdcdcd; | 229 border-bottom: solid 1px #cdcdcd; |
| 225 flex: none !important; | 230 flex: none !important; |
| 226 } | 231 } |
| OLD | NEW |