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

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

Issue 2057243003: DevTools: [network] Show request start time in timing table (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Common.UIString Created 3 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
« no previous file with comments | « third_party/WebKit/Source/devtools/front_end/network/RequestTimingView.js ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
56 color: rgb(30%, 30%, 30%); 56 color: rgb(30%, 30%, 30%);
57 } 57 }
58 58
59 /* Network timing is shared between popover and network item view pane */ 59 /* Network timing is shared between popover and network item view pane */
60 60
61 .network-timing-table { 61 .network-timing-table {
62 width: 380px; 62 width: 380px;
63 border-spacing: 0; 63 border-spacing: 0;
64 padding-left: 10px; 64 padding-left: 10px;
65 padding-right: 10px; 65 padding-right: 10px;
66 line-height: initial;
67 }
68
69 .network-timing-start {
70 border-top: 5px solid transparent;
71 }
72 .network-timing-table-header td, .network-timing-footer td {
73 border-top: 10px solid transparent;
66 } 74 }
67 75
68 .network-timing-table-header td { 76 .network-timing-table-header td {
69 color: #bbb; 77 color: #bbb;
70 border-top: 5px solid transparent;
71 border-bottom: 5px solid transparent;
72 } 78 }
73 79
74 .network-timing-table-header td:last-child { 80 .network-timing-table-header td:last-child {
75 text-align: right; 81 text-align: right;
76 } 82 }
77 83
78 .network-timing-table col.labels { 84 .network-timing-table col.labels {
79 width: 120px; 85 width: 156px;
80 } 86 }
81 87
82 .network-timing-table col.duration { 88 .network-timing-table col.duration {
83 width: 80px; 89 width: 80px;
84 } 90 }
85 91
86 .network-timing-table td { 92 .network-timing-table td {
87 padding: 2px 0; 93 padding: 2px 0;
88 } 94 }
89 95
90 .network-timing-table td.caution { 96 .network-timing-table td.caution {
91 font-weight: bold; 97 font-weight: bold;
92 color: rgb(255, 128, 0); 98 color: rgb(255, 128, 0);
93 padding: 2px 0; 99 padding: 2px 0;
94 } 100 }
95 101
96 .network-timing-table hr.break { 102 .network-timing-table hr.break {
97 border: 0; 103 border: 0;
98 height: 1px; 104 height: 1px;
99 background-image: linear-gradient(to right, #eee, #bbb, #eee); 105 background-image: linear-gradient(to right, #eee, #bbb, #eee);
100 } 106 }
101 107
102 .network-timing-footer td {
103 border-top: 8px solid transparent;
104 }
105
106 .network-timing-footer td:last-child { 108 .network-timing-footer td:last-child {
107 font-weight: bold; 109 font-weight: bold;
108 text-align: right; 110 text-align: right;
109 } 111 }
110 112
111 .network-timing-row { 113 .network-timing-row {
112 position: relative; 114 position: relative;
113 height: 15px; 115 height: 15px;
114 } 116 }
115 117
(...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after
251 253
252 .network-film-strip { 254 .network-film-strip {
253 border-bottom: solid 1px #cdcdcd; 255 border-bottom: solid 1px #cdcdcd;
254 flex: none !important; 256 flex: none !important;
255 } 257 }
256 258
257 .network-blocked-urls { 259 .network-blocked-urls {
258 border-top: 1px solid #dadada; 260 border-top: 1px solid #dadada;
259 flex: 104px 0 0; 261 flex: 104px 0 0;
260 } 262 }
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/devtools/front_end/network/RequestTimingView.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698