blob: 92379f56f0d1a6abb391e4b4604cebe367344418 [file] [log] [blame]
Blink Reformat4c46d092018-04-07 15:32:371/*
2 * Copyright (C) 2013 Google Inc. All rights reserved.
3 *
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are
6 * met:
7 *
8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above
11 * copyright notice, this list of conditions and the following disclaimer
12 * in the documentation and/or other materials provided with the
13 * distribution.
14 * * Neither the name of Google Inc. nor the names of its
15 * contributors may be used to endorse or promote products derived from
16 * this software without specific prior written permission.
17 *
18 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
19 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
20 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
21 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
22 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
23 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
24 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29 */
30
31.network-log-grid.data-grid {
32 border: none;
33 flex: auto;
34}
35
36.network-summary-bar {
37 flex: 0 0 27px;
38 line-height: 27px;
39 padding-left: 5px;
40 background-color: #eee;
41 border-top: 1px solid #ccc;
42 white-space: nowrap;
43 text-overflow: ellipsis;
44 overflow: hidden;
Joey Arharfcb4aef2019-05-20 21:16:4145 user-select: text;
Blink Reformat4c46d092018-04-07 15:32:3746}
47
Joey Arhara86c14e2019-03-12 03:20:5048.panel.network .toolbar.network-summary-bar {
49 border-bottom: 0px;
50}
51
Joel Einbinder7fbe24c2019-01-24 05:19:0152.network-summary-bar span[is=dt-icon-label] {
Blink Reformat4c46d092018-04-07 15:32:3753 margin-right: 6px;
54}
55
56.network-summary-bar > * {
57 flex: none;
58}
59
60.network-log-grid.data-grid table.data {
61 background: transparent;
62}
63
64.network-log-grid.data-grid td {
65 height: 41px;
66 border-left: 1px solid #e1e1e1;
67 vertical-align: middle;
68}
69
70.network-log-grid.data-grid .corner {
71 display: none;
72}
73
74.network-log-grid.data-grid.small td {
75 height: 21px;
76}
77
78.network-waterfall-header, .network-log-grid.data-grid th {
79 border-bottom: 1px solid rgb(205, 205, 205);
80 border-left: 1px solid rgb(205, 205, 205);
81}
82
83.network-waterfall-header, .network-log-grid.data-grid .header-container {
84 height: 31px;
85 background-color: var(--toolbar-bg-color);
86}
87
88.network-log-grid.data-grid .data-container {
89 top: 31px;
90}
91
92.network-waterfall-header.small, .network-log-grid.data-grid.small .header-container {
93 height: 27px;
94}
95
96.network-log-grid.data-grid.small .data-container {
97 top: 27px;
98}
99
100.network-log-grid.data-grid select {
101 -webkit-appearance: none;
102 border: none;
103 width: 100%;
104 color: inherit;
105}
106
107.network-log-grid.data-grid .name-column {
108 cursor: pointer;
109}
110
111.network-log-grid.data-grid .waterfall-column {
112 padding: 1px 0;
113}
114
115.network-log-grid.data-grid .waterfall-column .sort-order-icon-container {
116 right: 15px;
117 pointer-events: none;
118}
119
120.network-log-grid.data-grid th.sortable:active {
121 background-image: none !important;
122}
123
124.network-cell-subtitle {
125 font-weight: normal;
126 color: gray;
127}
128
129.network-badge {
130 margin-right: 4px;
131}
132
133.network-error-row,
134.network-error-row .network-cell-subtitle {
135 color: rgb(230, 0, 0);
136}
137
138.initiator-column .devtools-link {
139 color: inherit;
140}
141
142.network-log-grid.data-grid tr.selected,
143.network-log-grid.data-grid tr.selected .network-cell-subtitle,
144.network-log-grid.data-grid tr.selected .network-dim-cell {
145 color: inherit !important;
146}
147
148.network-log-grid.data-grid:focus tr.selected,
149.network-log-grid.data-grid:focus tr.selected .network-cell-subtitle,
150.network-log-grid.data-grid:focus tr.selected .network-dim-cell {
151 color: var(--selection-fg-color) !important;
152}
153
154.network-log-grid tr.highlighted-row {
155 -webkit-animation: network-row-highlight-fadeout 2s 0s;
156}
157
158@-webkit-keyframes network-row-highlight-fadeout {
159 from {background-color: rgba(255, 255, 120, 1); }
160 to { background-color: rgba(255, 255, 120, 0); }
161}
162
163.network-header-subtitle {
164 color: gray;
165}
166
167.network-log-grid.data-grid.small .network-cell-subtitle,
168.network-log-grid.data-grid.small .network-header-subtitle {
169 display: none;
170}
171
172/* Resource preview icons */
173
174.network-log-grid.data-grid .icon {
175 content: url(Images/resourcePlainIcon.png);
176}
177
178.network-log-grid.data-grid.small .icon {
179 content: url(Images/resourcePlainIconSmall.png);
180}
181
182.network-log-grid.data-grid .icon.script {
183 content: url(Images/resourceJSIcon.png);
184}
185
186.network-log-grid.data-grid.small .icon.script {
187 content: url(Images/resourceDocumentIconSmall.png);
188}
189
190.network-log-grid.data-grid .icon.document {
191 content: url(Images/resourceDocumentIcon.png);
192}
193
194.network-log-grid.data-grid.small .icon.document {
195 content: url(Images/resourceDocumentIconSmall.png);
196}
197
198.network-log-grid.data-grid .icon.stylesheet {
199 content: url(Images/resourceCSSIcon.png);
200}
201
202.network-log-grid.data-grid.small .icon.stylesheet {
203 content: url(Images/resourceDocumentIconSmall.png);
204}
205
206.network-log-grid.data-grid .icon.media {
207 content: url(Images/resourcePlainIcon.png); /* FIXME: media icon */
208}
209
210.network-log-grid.data-grid.small .icon.media {
211 content: url(Images/resourcePlainIconSmall.png); /* FIXME: media icon */
212}
213.network-log-grid.data-grid .icon.texttrack {
214 content: url(Images/resourcePlainIcon.png); /* FIXME: vtt icon */
215}
216
217.network-log-grid.data-grid.small .icon.texttrack {
218 content: url(Images/resourcePlainIconSmall.png); /* FIXME: vtt icon */
219}
220
221.network-log-grid.data-grid .icon.image {
222 position: relative;
223 background-image: url(Images/resourcePlainIcon.png);
224 background-repeat: no-repeat;
225 content: "";
226}
227
228.network-log-grid.data-grid.small .icon.image {
229 background-image: url(Images/resourcePlainIconSmall.png);
230 content: "";
231}
232
233.network-log-grid.data-grid .icon {
234 float: left;
235 width: 32px;
236 height: 32px;
237 margin-top: 1px;
238 margin-right: 3px;
239}
240
241.network-log-grid.data-grid.small .icon {
242 width: 16px;
243 height: 16px;
244}
245
246.network-log-grid.data-grid .image-network-icon-preview {
247 position: absolute;
248 margin: auto;
249 top: 3px;
250 bottom: 4px;
251 left: 5px;
252 right: 5px;
253 max-width: 18px;
254 max-height: 21px;
255 min-width: 1px;
256 min-height: 1px;
257}
258
259.network-log-grid.data-grid.small .image-network-icon-preview {
260 top: 2px;
261 bottom: 1px;
262 left: 3px;
263 right: 3px;
264 max-width: 8px;
265 max-height: 11px;
266}
267
268.network-dim-cell {
269 color: grey;
270}
271
Blink Reformat4c46d092018-04-07 15:32:37272.network-frame-divider {
273 width: 2px;
274 background-color: #FCCC49;
275 z-index: 10;
276 visibility: hidden;
277}
278
279#network-container:not(.brief-mode) .data-container {
280 overflow: hidden;
281}
282
Blink Reformat4c46d092018-04-07 15:32:37283.network-log-grid.data-grid .resources-dividers {
284 z-index: 0;
285}
286
287.network-log-grid.data-grid .resources-dividers-label-bar {
288 background-color: transparent;
289 border: none;
290 height: 30px;
291 pointer-events: none;
292}
293
294#network-container {
295 overflow: hidden;
296}
297
298.network-status-pane {
299 color: #777;
300 background-color: white;
301 z-index: 500;
302 display: flex;
303 justify-content: center;
304 align-items: center;
305 text-align: center;
306 padding: 0 20px;
307 overflow: auto;
308}
309
310.network-status-pane > .recording-hint {
311 font-size: 14px;
312 text-align: center;
313 line-height: 28px;
314}
315
316.network-waterfall-header {
317 position: absolute;
318 border-left: 0px;
319 width: 100%;
320 display: table;
321 z-index: 200;
322}
323
324.network-waterfall-header:hover {
325 background-color: hsla(0, 0%, 10%, 0.1);
326}
327
328.network-waterfall-header div {
329 display: table-cell;
330 line-height: 14px;
331 margin: auto 0px;
332 vertical-align: middle;
333 text-align: left;
334 font-weight: normal;
335 padding: 0px 4px;
336}
337
338.network-waterfall-header .sort-order-icon-container {
339 position: absolute;
340 top: 1px;
341 right: 0;
342 bottom: 1px;
343 display: flex;
344 align-items: center;
345}
346
347.network-waterfall-header .sort-order-icon {
348 align-items: center;
349 margin-right: 4px;
350 margin-bottom: -2px;
351}
352
353.network-frame-group-icon {
354 display: inline-block;
355 margin: -8px -2px;
356}
357
358.network-frame-group-badge {
359 margin-right: 4px;
360}