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

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

Issue 1794783006: Add Server-Timing support to devtools (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Apply feedback, don't have bars where the data is out of bounds, and handle comma deliminated headeā€¦ 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 79 matching lines...) Expand 10 before | Expand all | Expand 10 after
90 .network-timing-table td { 90 .network-timing-table td {
91 padding: 2px 0; 91 padding: 2px 0;
92 } 92 }
93 93
94 .network-timing-table td.caution { 94 .network-timing-table td.caution {
95 font-weight: bold; 95 font-weight: bold;
96 color: rgb(255, 128, 0); 96 color: rgb(255, 128, 0);
97 padding: 2px 0; 97 padding: 2px 0;
98 } 98 }
99 99
100 .network-timing-table hr.break {
101 border: 0;
102 height: 1px;
103 background-image: linear-gradient(to right, #eee, #bbb, #eee);
104 }
105
100 .network-timing-footer td { 106 .network-timing-footer td {
101 border-top: 8px solid transparent; 107 border-top: 8px solid transparent;
102 } 108 }
103 109
104 .network-timing-footer td:last-child { 110 .network-timing-footer td:last-child {
105 font-weight: bold; 111 font-weight: bold;
106 text-align: right; 112 text-align: right;
107 } 113 }
108 114
109 .network-timing-row { 115 .network-timing-row {
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
156 } 162 }
157 163
158 .network-timing-bar.waiting, -theme-preserve { 164 .network-timing-bar.waiting, -theme-preserve {
159 background-color: #00C853; 165 background-color: #00C853;
160 } 166 }
161 167
162 .network-timing-bar.receiving, -theme-preserve { 168 .network-timing-bar.receiving, -theme-preserve {
163 background-color: #03A9F4; 169 background-color: #03A9F4;
164 } 170 }
165 171
172 .network-timing-bar.server-timing, -theme-preserve {
173 background-color: #ddd;
174 }
175
176 .network-timing-table td.network-timing-metric {
177 white-space: nowrap;
178 max-width: 150px;
179 overflow-x:hidden;
caseq 2016/04/05 17:18:42 style: space after :
180 text-overflow: ellipsis;
181 }
182
166 .network-timing-bar.proxy, 183 .network-timing-bar.proxy,
167 .network-timing-bar.dns, 184 .network-timing-bar.dns,
168 .network-timing-bar.ssl, 185 .network-timing-bar.ssl,
169 .network-timing-bar.connecting, 186 .network-timing-bar.connecting,
170 .network-timing-bar.blocking { 187 .network-timing-bar.blocking {
171 height: 10px; 188 height: 10px;
172 margin: auto; 189 margin: auto;
173 } 190 }
174 191
175 .resource-timing-view .network-timing-table { 192 .resource-timing-view .network-timing-table {
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
233 250
234 .network-film-strip { 251 .network-film-strip {
235 border-bottom: solid 1px #cdcdcd; 252 border-bottom: solid 1px #cdcdcd;
236 flex: none !important; 253 flex: none !important;
237 } 254 }
238 255
239 .network-blocked-urls { 256 .network-blocked-urls {
240 border-top: 1px solid #dadada; 257 border-top: 1px solid #dadada;
241 flex: 104px 0 0; 258 flex: 104px 0 0;
242 } 259 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698