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

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: Updated version Created 4 years, 9 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);
pfeldman 2016/03/15 20:18:59 Please use flat #eee
104 }
105
106 .network-timing-table td.network-timing-metric {
107 height: 19px;
108 }
109
100 .network-timing-footer td { 110 .network-timing-footer td {
101 border-top: 8px solid transparent; 111 border-top: 8px solid transparent;
102 } 112 }
103 113
104 .network-timing-footer td:last-child { 114 .network-timing-footer td:last-child {
105 font-weight: bold; 115 font-weight: bold;
106 text-align: right; 116 text-align: right;
107 } 117 }
108 118
109 .network-timing-row { 119 .network-timing-row {
(...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after
233 243
234 .network-film-strip { 244 .network-film-strip {
235 border-bottom: solid 1px #cdcdcd; 245 border-bottom: solid 1px #cdcdcd;
236 flex: none !important; 246 flex: none !important;
237 } 247 }
238 248
239 .network-blocked-urls { 249 .network-blocked-urls {
240 border-top: 1px solid #dadada; 250 border-top: 1px solid #dadada;
241 flex: 104px 0 0; 251 flex: 104px 0 0;
242 } 252 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698