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

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

Issue 1828203005: Expose SPDY pushes in DevTools (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fixed tests Created 4 years, 8 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
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 141 matching lines...) Expand 10 before | Expand all | Expand 10 after
152 } 152 }
153 153
154 .network-timing-bar.sending, -theme-preserve { 154 .network-timing-bar.sending, -theme-preserve {
155 background-color: #B0BEC5; 155 background-color: #B0BEC5;
156 } 156 }
157 157
158 .network-timing-bar.waiting, -theme-preserve { 158 .network-timing-bar.waiting, -theme-preserve {
159 background-color: #00C853; 159 background-color: #00C853;
160 } 160 }
161 161
162 .network-timing-bar.receiving, -theme-preserve { 162 .network-timing-bar.receiving, -theme-preserve,
163 .network-timing-bar.receiving-push, -theme-preserve {
163 background-color: #03A9F4; 164 background-color: #03A9F4;
164 } 165 }
165 166
167 .network-timing-bar.push, -theme-preserve {
168 background-color: #8CDBff;
169 }
170
166 .network-timing-bar.proxy, 171 .network-timing-bar.proxy,
167 .network-timing-bar.dns, 172 .network-timing-bar.dns,
168 .network-timing-bar.ssl, 173 .network-timing-bar.ssl,
169 .network-timing-bar.connecting, 174 .network-timing-bar.connecting,
170 .network-timing-bar.blocking { 175 .network-timing-bar.blocking {
171 height: 10px; 176 height: 10px;
172 margin: auto; 177 margin: auto;
173 } 178 }
174 179
175 .resource-timing-view .network-timing-table { 180 .resource-timing-view .network-timing-table {
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
232 } 237 }
233 238
234 .network-film-strip { 239 .network-film-strip {
235 border-bottom: solid 1px #cdcdcd; 240 border-bottom: solid 1px #cdcdcd;
236 flex: none !important; 241 flex: none !important;
237 } 242 }
238 243
239 .network-blocked-urls { 244 .network-blocked-urls {
240 border-top: 1px solid #dadada; 245 border-top: 1px solid #dadada;
241 flex: 104px 0 0; 246 flex: 104px 0 0;
242 } 247 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698