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

Side by Side Diff: third_party/WebKit/Source/devtools/front_end/ui/inspectorCommon.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
« no previous file with comments | « third_party/WebKit/Source/devtools/front_end/network/networkPanel.css ('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 2015 The Chromium Authors. All rights reserved. 2 * Copyright 2015 The Chromium Authors. All rights reserved.
3 * Use of this source code is governed by a BSD-style license that can be 3 * Use of this source code is governed by a BSD-style license that can be
4 * found in the LICENSE file. 4 * found in the LICENSE file.
5 */ 5 */
6 6
7 * { 7 * {
8 /* This is required for correct sizing of flex items because we rely 8 /* This is required for correct sizing of flex items because we rely
9 * on an old version of the flexbox spec. 9 * on an old version of the flexbox spec.
10 * Longer-term we should remove this, see crbug.com/473625 */ 10 * Longer-term we should remove this, see crbug.com/473625 */
(...skipping 25 matching lines...) Expand all
36 font-family: dejavu sans mono, monospace; 36 font-family: dejavu sans mono, monospace;
37 } 37 }
38 38
39 .source-code { 39 .source-code {
40 font-family: monospace; 40 font-family: monospace;
41 font-size: 11px !important; 41 font-size: 11px !important;
42 white-space: pre-wrap; 42 white-space: pre-wrap;
43 } 43 }
44 44
45 * { 45 * {
46 box-sizing: border-box; 46 box-sizing: content-box;
47 } 47 }
48 48
49 :focus { 49 :focus {
50 outline: none; 50 outline: none;
51 } 51 }
52 52
53 img { 53 img {
54 -webkit-user-drag: none; 54 -webkit-user-drag: none;
55 } 55 }
56 56
(...skipping 172 matching lines...) Expand 10 before | Expand all | Expand 10 after
229 } 229 }
230 230
231 body.inactive select.chrome-select, 231 body.inactive select.chrome-select,
232 .chrome-select:disabled { 232 .chrome-select:disabled {
233 background-image: -webkit-image-set(url(Images/chromeDisabledSelect.png) 1x, url(Images/chromeDisabledSelect_2x.png) 2x), linear-gradient(#f1f1f1, #f1f1f1 3 8%, #e6e6e6); 233 background-image: -webkit-image-set(url(Images/chromeDisabledSelect.png) 1x, url(Images/chromeDisabledSelect_2x.png) 2x), linear-gradient(#f1f1f1, #f1f1f1 3 8%, #e6e6e6);
234 border-color: rgba(80, 80, 80, 0.2); 234 border-color: rgba(80, 80, 80, 0.2);
235 box-shadow: 0 1px 0 rgba(80, 80, 80, 0.08), 235 box-shadow: 0 1px 0 rgba(80, 80, 80, 0.08),
236 inset 0 1px 2px rgba(255, 255, 255, 0.75); 236 inset 0 1px 2px rgba(255, 255, 255, 0.75);
237 color: #aaa; 237 color: #aaa;
238 } 238 }
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/devtools/front_end/network/networkPanel.css ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698