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

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: 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 148 matching lines...) Expand 10 before | Expand all | Expand 10 after
159 .network-timing-bar.connecting, 159 .network-timing-bar.connecting,
160 .network-timing-bar.blocking { 160 .network-timing-bar.blocking {
161 height: 10px; 161 height: 10px;
162 margin: auto; 162 margin: auto;
163 } 163 }
164 164
165 .resource-timing-view .network-timing-table { 165 .resource-timing-view .network-timing-table {
166 width: 100%; 166 width: 100%;
167 } 167 }
168 168
169 #network-overview-panel {
170 flex: none;
171 position: relative;
172 }
173
169 #network-overview-container { 174 #network-overview-container {
170 overflow: hidden; 175 overflow: hidden;
171 flex: auto; 176 flex: auto;
172 display: flex; 177 display: flex;
178 flex-direction: column;
173 position: relative; 179 position: relative;
174 border-bottom: 1px solid #CDCDCD; 180 border-bottom: 1px solid #CDCDCD;
175 } 181 }
176 182
177 .network-overview-canvas-container { 183 #network-overview-grid .resources-dividers-label-bar {
178 position: absolute; 184 pointer-events: auto;
179 top: 0;
180 right: 0;
181 bottom: 0;
182 left: 0;
183 z-index: 200;
184 }
185
186 .network-overview-canvas-container canvas {
187 width: 100%;
188 height: 100%;
189 }
190
191 #network-overview-grid {
192 flex: auto;
193 } 185 }
194 186
195 .network .network-overview { 187 .network .network-overview {
196 flex: 0 0 100px; 188 flex: 0 0 100px;
197 } 189 }
198 190
199 .network-overview .overview-grid-window, 191 .network-overview .overview-grid-window,
200 .network-overview .overview-grid-dividers-background { 192 .network-overview .overview-grid-dividers-background {
201 height: 100%; 193 height: 100%;
202 } 194 }
(...skipping 17 matching lines...) Expand all
220 .request-view.html iframe { 212 .request-view.html iframe {
221 width: 100%; 213 width: 100%;
222 height: 100%; 214 height: 100%;
223 position: absolute; 215 position: absolute;
224 } 216 }
225 217
226 .network-film-strip { 218 .network-film-strip {
227 border-bottom: solid 1px #cdcdcd; 219 border-bottom: solid 1px #cdcdcd;
228 flex: none !important; 220 flex: none !important;
229 } 221 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698