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

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

Issue 659573005: DevTools: NetworkPanel: show link where resource timing is explained. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 2 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 92 matching lines...) Expand 10 before | Expand all | Expand 10 after
103 .network-timing-table td { 103 .network-timing-table td {
104 padding: 2px 0; 104 padding: 2px 0;
105 } 105 }
106 106
107 .network-timing-table td.caution { 107 .network-timing-table td.caution {
108 font-weight: bold; 108 font-weight: bold;
109 color: rgb(255, 128, 0); 109 color: rgb(255, 128, 0);
110 padding: 2px 0; 110 padding: 2px 0;
111 } 111 }
112 112
113 .network-timing-table .footnote {
114 border-top: 1px solid #eee;
115 }
116
113 .network-timing-row { 117 .network-timing-row {
114 position: relative; 118 position: relative;
115 height: 15px; 119 height: 15px;
116 } 120 }
117 121
118 .network-timing-bar { 122 .network-timing-bar {
119 position: absolute; 123 position: absolute;
120 min-width: 1px; 124 min-width: 1px;
121 top: 0; 125 top: 0;
122 bottom: 0; 126 bottom: 0;
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
185 189
186 .request-view.json { 190 .request-view.json {
187 padding: 5px; 191 padding: 5px;
188 } 192 }
189 193
190 .request-view.html iframe { 194 .request-view.html iframe {
191 width: 100%; 195 width: 100%;
192 height: 100%; 196 height: 100%;
193 position: absolute; 197 position: absolute;
194 } 198 }
OLDNEW
« no previous file with comments | « Source/devtools/front_end/network/RequestTimingView.js ('k') | Source/devtools/front_end/sources/JavaScriptSourceFrame.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698