Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(252)

Side by Side Diff: Source/devtools/front_end/network/networkPanel.css

Issue 1178563002: DevTools: Refactor network panel overview (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: update test. Created 5 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 153 matching lines...) Expand 10 before | Expand all | Expand 10 after
164 .network-timing-bar.connecting, 164 .network-timing-bar.connecting,
165 .network-timing-bar.blocking { 165 .network-timing-bar.blocking {
166 height: 10px; 166 height: 10px;
167 margin: auto; 167 margin: auto;
168 } 168 }
169 169
170 .resource-timing-view .network-timing-table { 170 .resource-timing-view .network-timing-table {
171 width: 100%; 171 width: 100%;
172 } 172 }
173 173
174 #network-overview-panel {
175 flex: none;
176 position: relative;
177 }
178
174 #network-overview-container { 179 #network-overview-container {
175 overflow: hidden; 180 overflow: hidden;
176 flex: auto; 181 flex: auto;
177 display: flex; 182 display: flex;
183 flex-direction: column;
178 position: relative; 184 position: relative;
179 border-bottom: 1px solid #CDCDCD; 185 border-bottom: 1px solid #CDCDCD;
180 } 186 }
181 187
182 .network-overview-canvas-container { 188 #network-overview-grid .resources-dividers-label-bar {
183 position: absolute; 189 pointer-events: auto;
184 top: 0;
185 right: 0;
186 bottom: 0;
187 left: 0;
188 z-index: 200;
189 }
190
191 .network-overview-canvas-container canvas {
192 width: 100%;
193 height: 100%;
194 }
195
196 #network-overview-grid {
197 flex: auto;
198 } 190 }
199 191
200 .network .network-overview { 192 .network .network-overview {
201 flex: 0 0 100px; 193 flex: 0 0 100px;
202 } 194 }
203 195
204 .network-overview .overview-grid-window, 196 .network-overview .overview-grid-window,
205 .network-overview .overview-grid-dividers-background { 197 .network-overview .overview-grid-dividers-background {
206 height: 100%; 198 height: 100%;
207 } 199 }
(...skipping 17 matching lines...) Expand all
225 .request-view.html iframe { 217 .request-view.html iframe {
226 width: 100%; 218 width: 100%;
227 height: 100%; 219 height: 100%;
228 position: absolute; 220 position: absolute;
229 } 221 }
230 222
231 .network-film-strip { 223 .network-film-strip {
232 border-bottom: solid 1px #cdcdcd; 224 border-bottom: solid 1px #cdcdcd;
233 flex: none !important; 225 flex: none !important;
234 } 226 }
OLDNEW
« no previous file with comments | « Source/devtools/front_end/network/NetworkTimeCalculator.js ('k') | Source/devtools/front_end/timeline/CountersGraph.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698