tizen beta release
[framework/web/webkit-efl.git] / debian / tmp / usr / share / ewebkit-0 / webinspector / networkLogView.css
1 .network-log-grid.data-grid {
2     border: none;
3     position: absolute;
4     top: 0;
5     left: 0;
6     right: 0;
7     bottom: 0;
8     font-size: 11px;
9 }
10
11 .network-log-grid.data-grid table.data {
12     -webkit-background-size: 1px 82px;
13     background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), color-stop(0.5, rgba(0, 0, 0, 0)), color-stop(0.5, rgba(0, 0, 0, 0.05)), to(rgba(0, 0, 0, 0.05)));
14     font-size: 11px;
15 }
16
17 .network-log-grid.data-grid.small table.data {
18     -webkit-background-size: 1px 42px;
19 }
20
21 .network-log-grid.data-grid td {
22     line-height: 17px;
23     height: 37px;
24     border-right: 1px solid rgb(210, 210, 210);
25     vertical-align: middle;
26 }
27
28 .network-log-grid.data-grid.small td {
29     height: 17px;
30 }
31
32 .network-log-grid.data-grid th {
33     border-bottom: 1px solid rgb(64%, 64%, 64%);
34     height: 30px;
35     font-size: 11px;
36     font-weight: bold;
37 }
38
39 .network-log-grid.data-grid.small th {
40     height: 22px;
41 }
42
43 .network-log-grid.data-grid th, .network-log-grid.data-grid th.sort-descending, .network-log-grid.data-grid th.sort-ascending {
44     background: -webkit-gradient(linear, left top, left bottom, from(rgb(236, 236, 236)), to(rgb(217, 217, 217)));
45 }
46
47 .network-log-grid.data-grid .data-container {
48     top: 31px;
49 }
50
51 .network-log-grid.data-grid.small .data-container {
52     top: 23px;
53 }
54
55 .network-log-grid.data-grid select {
56     -webkit-appearance: none;
57     background-color: transparent;
58     border: none;
59     width: 100%;
60     font-size: 11px;
61     font-weight: bold;
62 }
63
64 .network-log-grid.data-grid.small tr.offscreen {
65     height: 21px;
66 }
67
68 .network-log-grid.data-grid tr.offscreen {
69     height: 41px;
70 }
71
72 .network-log-grid.data-grid tr.offscreen td {
73     display: none;
74 }
75
76 .network-log-grid.data-grid tr.filler {
77     background-color: white;
78 }
79
80 .network-log-grid.data-grid tr:not(.filler) td.name-column {
81     font-weight: bold;
82     cursor: pointer;
83 }
84
85 #network-container:not(.brief-mode) .network-log-grid.data-grid td.name-column:hover {
86     text-decoration: underline;
87 }
88
89 .network-log-grid.data-grid td.method-column,
90 .network-log-grid.data-grid td.status-column,
91 .network-log-grid.data-grid td.type-column,
92 .network-log-grid.data-grid td.initiator-column,
93 .network-log-grid.data-grid td.size-column,
94 .network-log-grid.data-grid td.time-column {
95     background-color: rgba(0, 0, 0, 0.07);
96 }
97
98 .network-log-grid.data-grid td.size-column,
99 .network-log-grid.data-grid td.time-column {
100     text-align: right;
101 }
102
103 .network-log-grid.data-grid.small .network-graph-side {
104     height: 14px;
105 }
106
107 .network-log-grid.data-grid th.sortable:active {
108     background-image: none !important;
109 }
110
111 .network-cell-subtitle {
112     font-weight: normal;
113     color: gray;
114 }
115
116 .network-error-row, .network-error-row .network-cell-subtitle {
117     color: rgb(230, 0, 0);
118 }
119
120 .initiator-column a {
121     color: inherit;
122 }
123
124 .network-log-grid.data-grid tr.selected .network-cell-subtitle {
125     color: white;
126 }
127
128 .network-header-subtitle {
129     color: gray;
130 }
131
132 .network-log-grid.data-grid.small .network-cell-subtitle,
133 .network-log-grid.data-grid.small .network-header-subtitle
134 {
135     display: none;
136 }
137
138 /* Resource preview icons */
139
140 .network-log-grid.data-grid .icon {
141     content: url(Images/resourcePlainIcon.png);
142 }
143
144 .network-log-grid.data-grid.small .icon {
145     content: url(Images/resourcePlainIconSmall.png);
146 }
147
148 .network-log-grid.data-grid .network-category-scripts .icon {
149     content: url(Images/resourceJSIcon.png);
150 }
151
152 .network-log-grid.data-grid.small .network-category-scripts .icon {
153     content: url(Images/resourceDocumentIconSmall.png);
154 }
155
156 .network-log-grid.data-grid .network-category-documents .icon {
157     content: url(Images/resourceDocumentIcon.png);
158 }
159
160 .network-log-grid.data-grid.small .network-category-documents .icon {
161     content: url(Images/resourceDocumentIconSmall.png);
162 }
163
164 .network-log-grid.data-grid .network-category-stylesheets .icon {
165     content: url(Images/resourceCSSIcon.png);
166 }
167
168 .network-log-grid.data-grid.small .network-category-stylesheets .icon {
169     content: url(Images/resourceDocumentIconSmall.png);
170 }
171
172 .network-log-grid.data-grid .network-category-images .icon {
173     position: relative;
174     background-image: url(Images/resourcePlainIcon.png);
175     background-repeat: no-repeat;
176     content: "";
177 }
178
179 .network-log-grid.data-grid.small .network-category-images .icon {
180     background-image: url(Images/resourcePlainIconSmall.png);
181     content: "";
182 }
183
184 .network-log-grid.data-grid .icon {
185     float: left;
186     width: 32px;
187     height: 32px;
188     margin-top: 1px;
189     margin-right: 3px;
190 }
191
192 .network-log-grid.data-grid.small .icon {
193     width: 16px;
194     height: 16px;
195 }
196
197 .network-log-grid.data-grid .image-network-icon-preview {
198     position: absolute;
199     margin: auto;
200     top: 3px;
201     bottom: 4px;
202     left: 5px;
203     right: 5px;
204     max-width: 18px;
205     max-height: 21px;
206     min-width: 1px;
207     min-height: 1px;
208 }
209
210 .network-log-grid.data-grid.small .image-network-icon-preview {
211     top: 2px;
212     bottom: 1px;
213     left: 3px;
214     right: 3px;
215     max-width: 8px;
216     max-height: 11px;
217 }
218
219 /* Graph styles */
220
221 .network-graph-side {
222     position: relative;
223     height: 36px;
224     padding: 0 5px;
225     white-space: nowrap;
226     margin-top: 1px;
227     border-top: 1px solid transparent;
228     overflow: hidden;
229 }
230
231 .network-graph-bar-area {
232     position: absolute;
233     top: 0;
234     bottom: 0;
235     right: 8px;
236     left: 9px;
237 }
238
239 .network-graph-label {
240     position: absolute;
241     top: 0;
242     bottom: 0;
243     margin: auto -7px;
244     height: 13px;
245     line-height: 13px;
246     font-size: 9px;
247     color: rgba(0, 0, 0, 0.75);
248     text-shadow: rgba(255, 255, 255, 0.25) 1px 0 0, rgba(255, 255, 255, 0.25) -1px 0 0, rgba(255, 255, 255, 0.333) 0 1px 0, rgba(255, 255, 255, 0.25) 0 -1px 0;
249     z-index: 150;
250     overflow: hidden;
251     text-align: center;
252     font-weight: bold;
253     opacity: 0;
254     -webkit-transition: opacity 250ms ease-in-out;
255 }
256
257 .network-graph-side:hover .network-graph-label {
258     opacity: 1;
259 }
260
261 .network-graph-label:empty {
262     display: none;
263 }
264
265 .network-graph-label.waiting {
266     margin-right: 5px;
267 }
268
269 .network-graph-label.waiting-right {
270     margin-left: 5px;
271 }
272
273 .network-graph-label.before {
274     color: rgba(0, 0, 0, 0.7);
275     text-shadow: none;
276     text-align: right;
277     margin-right: 2px;
278 }
279
280 .network-graph-label.before::after {
281     padding-left: 2px;
282     height: 6px;
283     content: url(Images/graphLabelCalloutLeft.png);
284 }
285
286 .network-graph-label.after {
287     color: rgba(0, 0, 0, 0.7);
288     text-shadow: none;
289     text-align: left;
290     margin-left: 2px;
291 }
292
293 .network-graph-label.after::before {
294     padding-right: 2px;
295     height: 6px;
296     content: url(Images/graphLabelCalloutRight.png);
297 }
298
299 .network-graph-bar {
300     position: absolute;
301     top: 0;
302     bottom: 0;
303     margin: auto -7px;
304     border-width: 6px 7px;
305     height: 13px;
306     min-width: 14px;
307     opacity: 0.65;
308     -webkit-border-image: url(Images/timelinePillGray.png) 6 7 6 7;
309 }
310
311 .network-graph-bar.waiting, .network-graph-bar.waiting-right {
312     opacity: 0.35;
313 }
314
315 /* Resource categories */
316
317
318 .resource-cached .network-graph-bar {
319     -webkit-border-image: url(Images/timelineHollowPillGray.png) 6 7 6 7;
320 }
321
322 .network-category-documents .network-graph-bar {
323     -webkit-border-image: url(Images/timelinePillBlue.png) 6 7 6 7;
324 }
325
326 .network-category-documents.resource-cached .network-graph-bar {
327     -webkit-border-image: url(Images/timelineHollowPillBlue.png) 6 7 6 7;
328 }
329
330 .network-category-stylesheets .network-graph-bar {
331     -webkit-border-image: url(Images/timelinePillGreen.png) 6 7 6 7;
332 }
333
334 .network-category-stylesheets.resource-cached .network-graph-bar {
335     -webkit-border-image: url(Images/timelineHollowPillGreen.png) 6 7 6 7;
336 }
337
338 .network-category-images .network-graph-bar {
339     -webkit-border-image: url(Images/timelinePillPurple.png) 6 7 6 7;
340 }
341
342 .network-category-images.resource-cached .network-graph-bar {
343     -webkit-border-image: url(Images/timelineHollowPillPurple.png) 6 7 6 7;
344 }
345
346 .network-category-fonts .network-graph-bar {
347     -webkit-border-image: url(Images/timelinePillRed.png) 6 7 6 7;
348 }
349
350 .network-category-fonts.resource-cached .network-graph-bar {
351     -webkit-border-image: url(Images/timelineHollowPillRed.png) 6 7 6 7;
352 }
353
354 .network-category-scripts .network-graph-bar {
355     -webkit-border-image: url(Images/timelinePillOrange.png) 6 7 6 7;
356 }
357
358 .network-category-scripts.resource-cached .network-graph-bar {
359     -webkit-border-image: url(Images/timelineHollowPillOrange.png) 6 7 6 7;
360 }
361
362 .network-category-xhr .network-graph-bar {
363     -webkit-border-image: url(Images/timelinePillYellow.png) 6 7 6 7;
364 }
365
366 .network-category-xhr.resource-cached .network-graph-bar {
367     -webkit-border-image: url(Images/timelineHollowPillYellow.png) 6 7 6 7;
368 }
369
370 .network-category-websockets .network-graph-bar {
371     -webkit-border-image: url(Images/timelinePillGray.png) 6 7 6 7;
372 }
373
374 .network-category-websockets.resource-cached .network-graph-bar {
375    -webkit-border-image: url(Images/timelineHollowPillGray.png) 6 7 6 7;
376 }
377
378 .network-dim-cell {
379     color: grey;
380 }
381
382 /* Dividers */
383
384 .network-timeline-grid {
385     position: absolute;
386     top: 0;
387     bottom: 0;
388     left: 0;
389     right: 0;
390     pointer-events: none;
391 }
392
393 .network-event-divider-padding {
394     position: absolute;
395     width: 8px;
396     top: 0;
397     bottom: 0;
398     pointer-events: auto;
399 }
400
401 .network-event-divider {
402     position: absolute;
403     width: 2px;
404     top: 31px;
405     bottom: 0;
406     z-index: 300;
407 }
408
409 .network-timeline-grid.small .network-event-divider {
410     top: 23px;
411 }
412
413 .network-red-divider {
414     background-color: rgba(255, 0, 0, 0.5);
415 }
416
417 .network-blue-divider {
418     background-color: rgba(0, 0, 255, 0.5);
419 }
420
421 .network-log-grid.data-grid .resources-dividers {
422     z-index: 0;
423 }
424
425 .network-log-grid.data-grid .resources-dividers-label-bar {
426     background-color: transparent;
427     border: none;
428     height: 30px;
429     pointer-events: none;
430 }
431
432 .network-timeline-grid.small .resources-dividers-label-bar {
433     height: 23px;
434 }
435
436 .network-timeline-grid .resources-divider-label {
437     top: 0px;
438     margin-top: -4px;
439     color: black;
440 }
441
442 .network-timeline-grid .resources-dividers-label-bar .resources-divider {
443     top: 23px;
444 }
445
446 .network-timeline-grid.small .resources-dividers-label-bar .resources-divider {
447     top: 15px;
448 }
449
450 .network-timeline-grid .resources-divider.first .resources-divider-label {
451     display: none;
452 }
453
454 .network-timeline-grid .resources-dividers-label-bar .resources-divider.first {
455     background-color: transparent;
456 }
457
458 /* Filters */
459 #network-filter {
460     margin-top: 1px;
461 }
462
463 .network-log-grid.data-grid table.data tr.revealed.network-item {
464     display: none;
465 }
466
467 .network-log-grid.data-grid.filter-all table.data tr.revealed.network-item,
468 .network-log-grid.data-grid.filter-documents table.data tr.revealed.network-category-documents,
469 .network-log-grid.data-grid.filter-stylesheets table.data tr.revealed.network-category-stylesheets,
470 .network-log-grid.data-grid.filter-images table.data tr.revealed.network-category-images,
471 .network-log-grid.data-grid.filter-scripts table.data tr.revealed.network-category-scripts,
472 .network-log-grid.data-grid.filter-xhr table.data tr.revealed.network-category-xhr,
473 .network-log-grid.data-grid.filter-fonts table.data tr.revealed.network-category-fonts,
474 .network-log-grid.data-grid.filter-websockets table.data tr.revealed.network-category-websockets,
475 .network-log-grid.data-grid.filter-other table.data tr.revealed.network-category-other {
476     display: table-row;
477 }
478
479 /* Summary */
480
481 .network-log-grid.data-grid tr.filler td {
482     padding-bottom: 20px !important;
483 }
484
485 .network-log-grid.data-grid .network-summary-bar {
486     position: absolute;
487     left: 0;
488     right: 0;
489     bottom: 0;
490     margin-right: -14px;
491     background-color: rgb(101, 111, 130);
492 }
493
494 .network-log-grid.data-grid .network-summary-bar td {
495     color: white;
496     height: 20px !important;
497     border: none;
498     font-size: 11px;
499     font-weight: bold;
500     padding: 0 0 0 8px;
501     white-space: pre;
502     overflow : hidden;
503     text-overflow : ellipsis;
504 }
505
506 .network-log-grid.data-grid .network-summary-bar img {
507     vertical-align: middle;
508     padding-right: 8px;
509 }
510
511 #network-container {
512     position: absolute;
513     top: 0;
514     left: 0;
515     bottom: 0;
516     right: 0;
517     width: 100%;
518     height: 100%;
519     border-right: 0 none transparent;
520     overflow-y: auto;
521     overflow-x: hidden;
522 }
523
524 // Brief mode peculiarities.
525 #network-container.brief-mode .network-timeline-grid {
526     display: none;
527 }
528
529 #network-container.brief-mode td,
530 #network-container.brief-mode th {
531     border-right: none;
532 }
533
534 #network-container.brief-mode th.corner {
535     display: none;
536 }
537
538 #network-container.brief-mode .network-log-grid.data-grid .data-grid-resizer {
539     display: none;
540 }
541
542 #network-container.brief-mode .network-timeline-grid {
543     display: none;
544 }
545
546 #network-container:not(.brief-mode) .data-grid tr.selected {
547     background-color: transparent;
548     color: black;
549 }
550
551 #network-container.brief-mode .data-grid .data-container {
552     padding-right: 0;
553 }