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

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

Issue 1172643002: DevTools: migrate sidebar pane's titleElement to use Toolbar. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: only using latin1 in css 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 22 matching lines...) Expand all
33 33
34 .network-close-button { 34 .network-close-button {
35 margin: auto -1px auto 4px; 35 margin: auto -1px auto 4px;
36 } 36 }
37 37
38 .network-details-view-tall-header { 38 .network-details-view-tall-header {
39 margin-top: 8px; 39 margin-top: 8px;
40 } 40 }
41 41
42 .network-item-view { 42 .network-item-view {
43 display: none; 43 display: flex;
44 background: white; 44 background: white;
45 } 45 }
46 46
47 .network-item-view.visible {
48 display: flex;
49 }
50
51 .resource-timing-view { 47 .resource-timing-view {
52 display: none; 48 display: block;
53 margin: 6px; 49 margin: 6px;
54 color: rgb(30%, 30%, 30%); 50 color: rgb(30%, 30%, 30%);
55 } 51 }
56 52
57 /* Network timing is shared between popover and network item view pane */ 53 /* Network timing is shared between popover and network item view pane */
58 54
59 .network-timing-table { 55 .network-timing-table {
60 width: 380px; 56 width: 380px;
61 border-spacing: 0; 57 border-spacing: 0;
62 padding-left: 10px; 58 padding-left: 10px;
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after
159 155
160 .network-timing-bar.proxy, 156 .network-timing-bar.proxy,
161 .network-timing-bar.dns, 157 .network-timing-bar.dns,
162 .network-timing-bar.ssl, 158 .network-timing-bar.ssl,
163 .network-timing-bar.connecting, 159 .network-timing-bar.connecting,
164 .network-timing-bar.blocking { 160 .network-timing-bar.blocking {
165 height: 10px; 161 height: 10px;
166 margin: auto; 162 margin: auto;
167 } 163 }
168 164
169 .resource-timing-view.visible {
170 display: block;
171 }
172
173 .resource-timing-view .network-timing-table { 165 .resource-timing-view .network-timing-table {
174 width: 100%; 166 width: 100%;
175 } 167 }
176 168
177 #network-overview-container { 169 #network-overview-container {
178 overflow: hidden; 170 overflow: hidden;
179 flex: auto; 171 flex: auto;
180 display: flex; 172 display: flex;
181 position: relative; 173 position: relative;
182 border-bottom: 1px solid #CDCDCD; 174 border-bottom: 1px solid #CDCDCD;
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
228 .request-view.html iframe { 220 .request-view.html iframe {
229 width: 100%; 221 width: 100%;
230 height: 100%; 222 height: 100%;
231 position: absolute; 223 position: absolute;
232 } 224 }
233 225
234 .network-film-strip { 226 .network-film-strip {
235 border-bottom: solid 1px #cdcdcd; 227 border-bottom: solid 1px #cdcdcd;
236 flex: none !important; 228 flex: none !important;
237 } 229 }
OLDNEW
« no previous file with comments | « Source/devtools/front_end/inspectorStyle.css ('k') | Source/devtools/front_end/network/requestCookiesView.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698