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

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

Issue 1232733002: DevTools: [network] Show request Start time in timing table (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: post-fork. queuing is inside of total. queued time, too Created 5 years, 1 month 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 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
55 color: rgb(30%, 30%, 30%); 55 color: rgb(30%, 30%, 30%);
56 } 56 }
57 57
58 /* Network timing is shared between popover and network item view pane */ 58 /* Network timing is shared between popover and network item view pane */
59 59
60 .network-timing-table { 60 .network-timing-table {
61 width: 380px; 61 width: 380px;
62 border-spacing: 0; 62 border-spacing: 0;
63 padding-left: 10px; 63 padding-left: 10px;
64 padding-right: 10px; 64 padding-right: 10px;
65 line-height: initial;
66 }
67
68 .network-timing-start {
69 border-top: 5px solid transparent;
70 }
71
72 .network-timing-table-header td, .network-timing-footer td {
73 border-top: 10px solid transparent;
74 }
75
76 .network-timing-footer td:nth-child(2) {
77 border-top: 1px solid #333;
65 } 78 }
66 79
67 .network-timing-table-header td { 80 .network-timing-table-header td {
68 color: #bbb; 81 color: #bbb;
69 border-top: 5px solid transparent;
70 border-bottom: 5px solid transparent;
71 } 82 }
72 83
73 .network-timing-table-header td:last-child { 84 .network-timing-table-header td:last-child {
74 text-align: right; 85 text-align: right;
75 } 86 }
76 87
77 .network-timing-table col.labels { 88 .network-timing-table col.labels {
78 width: 120px; 89 width: 156px;
79 } 90 }
80 91
81 .network-timing-table col.duration { 92 .network-timing-table col.duration {
82 width: 80px; 93 width: 80px;
83 } 94 }
84 95
85 .network-timing-table td { 96 .network-timing-table td {
86 padding: 2px 0; 97 padding: 2px 0;
87 } 98 }
88 99
89 .network-timing-table td.caution { 100 .network-timing-table td.caution {
90 font-weight: bold; 101 font-weight: bold;
91 color: rgb(255, 128, 0); 102 color: rgb(255, 128, 0);
92 padding: 2px 0; 103 padding: 2px 0;
93 } 104 }
94 105
95 .network-timing-footer td {
96 border-top: 8px solid transparent;
97 }
98
99 .network-timing-footer td:last-child { 106 .network-timing-footer td:last-child {
100 font-weight: bold; 107 font-weight: bold;
101 text-align: right; 108 text-align: right;
102 } 109 }
103 110
104 .network-timing-row { 111 .network-timing-row {
105 position: relative; 112 position: relative;
106 height: 15px; 113 height: 15px;
107 } 114 }
108 115
(...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after
227 234
228 .network-film-strip { 235 .network-film-strip {
229 border-bottom: solid 1px #cdcdcd; 236 border-bottom: solid 1px #cdcdcd;
230 flex: none !important; 237 flex: none !important;
231 } 238 }
232 239
233 .network-blocked-urls { 240 .network-blocked-urls {
234 border-top: 1px solid #dadada; 241 border-top: 1px solid #dadada;
235 flex: 104px 0 0; 242 flex: 104px 0 0;
236 } 243 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698