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

Side by Side Diff: third_party/WebKit/Source/devtools/front_end/network/networkLogView.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) 2013 Google Inc. All rights reserved. 2 * Copyright (C) 2013 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 366 matching lines...) Expand 10 before | Expand all | Expand 10 after
377 } 377 }
378 378
379 /* Resource categories */ 379 /* Resource categories */
380 380
381 .network-graph-bar.request-timing.queueing, 381 .network-graph-bar.request-timing.queueing,
382 .network-graph-bar.request-timing.total, 382 .network-graph-bar.request-timing.total,
383 .network-graph-bar.request-timing.proxy, 383 .network-graph-bar.request-timing.proxy,
384 .network-graph-bar.request-timing.dns, 384 .network-graph-bar.request-timing.dns,
385 .network-graph-bar.request-timing.ssl, 385 .network-graph-bar.request-timing.ssl,
386 .network-graph-bar.request-timing.connecting, 386 .network-graph-bar.request-timing.connecting,
387 .network-graph-bar.request-timing.blocking { 387 .network-graph-bar.request-timing.blocking,
388 .network-graph-bar.request-timing.push {
388 margin: 3px 0; 389 margin: 3px 0;
389 } 390 }
390 391
391 .network-graph-bar.request-timing.queueing, 392 .network-graph-bar.request-timing.queueing,
392 .network-graph-bar.request-timing.total, -theme-preserve { 393 .network-graph-bar.request-timing.total, -theme-preserve {
393 border: solid 1px #AAAAAA; 394 border: solid 1px #AAAAAA;
394 } 395 }
395 396
396 .network-graph-bar.request-timing.receiving, -theme-preserve { 397 .network-graph-bar.request-timing.receiving, -theme-preserve,
398 .network-graph-bar.request-timing.receiving-push, -theme-preserve {
397 background-color: #03A9F4; 399 background-color: #03A9F4;
398 } 400 }
399 401
400 .network-graph-bar.request-timing.waiting, -theme-preserve { 402 .network-graph-bar.request-timing.waiting, -theme-preserve {
401 background-color: #00C853; 403 background-color: #00C853;
402 } 404 }
403 405
404 .network-graph-bar.request-timing.connecting, -theme-preserve { 406 .network-graph-bar.request-timing.connecting, -theme-preserve {
405 background-color: #FF9800; 407 background-color: #FF9800;
406 } 408 }
407 409
408 .network-graph-bar.request-timing.ssl, -theme-preserve { 410 .network-graph-bar.request-timing.ssl, -theme-preserve {
409 background-color: #9C27B0; 411 background-color: #9C27B0;
410 } 412 }
411 413
412 .network-graph-bar.request-timing.dns, -theme-preserve { 414 .network-graph-bar.request-timing.dns, -theme-preserve {
413 background-color: #009688; 415 background-color: #009688;
414 } 416 }
415 417
416 .network-graph-bar.request-timing.proxy, -theme-preserve { 418 .network-graph-bar.request-timing.proxy, -theme-preserve {
417 background-color: #A1887F; 419 background-color: #A1887F;
418 } 420 }
419 421
420 .network-graph-bar.request-timing.blocking, -theme-preserve { 422 .network-graph-bar.request-timing.blocking, -theme-preserve {
421 background-color: #AAAAAA; 423 background-color: #AAAAAA;
422 } 424 }
423 425
426 .network-graph-bar.request-timing.push, -theme-preserve {
427 background-color: #8CDBff;
428 }
429
424 .network-graph-bar.cached { 430 .network-graph-bar.cached {
425 background: hsl(0, 0%, 90%); 431 background: hsl(0, 0%, 90%);
426 } 432 }
427 433
428 .network-graph-bar.document { 434 .network-graph-bar.document {
429 border-color: hsl(215, 49%, 60%); 435 border-color: hsl(215, 49%, 60%);
430 background: linear-gradient(0deg, hsl(215, 72%, 65%), hsl(215, 100%, 80%)); 436 background: linear-gradient(0deg, hsl(215, 72%, 65%), hsl(215, 100%, 80%));
431 } 437 }
432 438
433 .network-graph-bar.cached.document { 439 .network-graph-bar.cached.document {
(...skipping 201 matching lines...) Expand 10 before | Expand all | Expand 10 after
635 align-items: center; 641 align-items: center;
636 text-align: center; 642 text-align: center;
637 padding: 0 20px; 643 padding: 0 20px;
638 overflow: auto; 644 overflow: auto;
639 } 645 }
640 646
641 .network-status-pane > .recording-hint { 647 .network-status-pane > .recording-hint {
642 font-size: 14px; 648 font-size: 14px;
643 text-align: center; 649 text-align: center;
644 line-height: 28px; 650 line-height: 28px;
645 } 651 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698