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

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

Issue 152493003: Remove all usage of -webkit-*gradient inside blink (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 10 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 209 matching lines...) Expand 10 before | Expand all | Expand 10 after
220 .resource-timing-view table { 220 .resource-timing-view table {
221 border-spacing: 21px 0; 221 border-spacing: 21px 0;
222 } 222 }
223 223
224 .resource-timing-view .network-timing-bar { 224 .resource-timing-view .network-timing-bar {
225 opacity: 1; 225 opacity: 1;
226 } 226 }
227 227
228 .resource-timing-view .network-timing-bar.blocking, 228 .resource-timing-view .network-timing-bar.blocking,
229 .resource-timing-view .network-timing-bar.proxy { 229 .resource-timing-view .network-timing-bar.proxy {
230 background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(2 42, 242, 194)), to(rgb(204, 204, 102))); 230 background-image: linear-gradient(to bottom, rgb(242, 242, 194), rgb(204, 20 4, 102));
231 border-left: 1px solid rgb(204, 204, 102); 231 border-left: 1px solid rgb(204, 204, 102);
232 } 232 }
233 233
234 .resource-timing-view .network-timing-bar.dns { 234 .resource-timing-view .network-timing-bar.dns {
235 background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(1 94, 242, 194)), to(rgb(102, 204, 102))); 235 background-image: linear-gradient(to bottom, rgb(194, 242, 194), rgb(102, 20 4, 102));
236 border-left: 1px solid rgb(102, 204, 102); 236 border-left: 1px solid rgb(102, 204, 102);
237 } 237 }
238 238
239 .resource-timing-view .network-timing-bar.connecting, 239 .resource-timing-view .network-timing-bar.connecting,
240 .resource-timing-view .network-timing-bar.ssl { 240 .resource-timing-view .network-timing-bar.ssl {
241 background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(1 94, 242, 242)), to(rgb(102, 204, 204))); 241 background-image: linear-gradient(to bottom, rgb(194, 242, 242), rgb(102, 20 4, 204));
242 border-left: 1px solid rgb(102, 204, 204); 242 border-left: 1px solid rgb(102, 204, 204);
243 } 243 }
244 244
245 .resource-timing-view .network-timing-bar.sending { 245 .resource-timing-view .network-timing-bar.sending {
246 background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(1 94, 194, 242)), to(rgb(102, 102, 204))); 246 background-image: linear-gradient(to bottom, rgb(194, 194, 242), rgb(102, 10 2, 204));
247 border-left: 1px solid rgb(102, 102, 204); 247 border-left: 1px solid rgb(102, 102, 204);
248 } 248 }
249 249
250 .resource-timing-view .network-timing-bar.waiting { 250 .resource-timing-view .network-timing-bar.waiting {
251 background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(2 42, 194, 242)), to(rgb(204, 102, 204))); 251 background-image: linear-gradient(to bottom, rgb(242, 194, 242), rgb(204, 10 2, 204));
252 border-left: 1px solid rgb(204, 102, 204); 252 border-left: 1px solid rgb(204, 102, 204);
253 } 253 }
254 254
255 .resource-timing-view .network-timing-bar.receiving { 255 .resource-timing-view .network-timing-bar.receiving {
256 background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(2 42, 194, 194)), to(rgb(204, 102, 102))); 256 background-image: linear-gradient(to bottom, rgb(242, 194, 194), rgb(204, 10 2, 102));
257 border-left: 1px solid rgb(204, 102, 102); 257 border-left: 1px solid rgb(204, 102, 102);
258 } 258 }
259 259
260 .resource-timing-view.visible { 260 .resource-timing-view.visible {
261 display: block; 261 display: block;
262 } 262 }
263 263
264 .resource-websocket { 264 .resource-websocket {
265 -webkit-user-select: text; 265 -webkit-user-select: text;
266 } 266 }
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
322 } 322 }
323 323
324 .panel.network .split-view { 324 .panel.network .split-view {
325 flex: auto; 325 flex: auto;
326 position: relative; 326 position: relative;
327 } 327 }
328 328
329 .network-filters-header { 329 .network-filters-header {
330 flex: 0 0 23px; 330 flex: 0 0 23px;
331 } 331 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698