OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2013 Google Inc. All rights reserved. | 2 * Copyright (C) 2013 Google Inc. All rights reserved. |
3 * | 3 * |
4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
6 * met: | 6 * met: |
7 * | 7 * |
8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
42 white-space: nowrap; | 42 white-space: nowrap; |
43 text-overflow: ellipsis; | 43 text-overflow: ellipsis; |
44 overflow: hidden; | 44 overflow: hidden; |
45 } | 45 } |
46 | 46 |
47 .network-summary-bar .warning-icon-small { | 47 .network-summary-bar .warning-icon-small { |
48 margin-right: 6px; | 48 margin-right: 6px; |
49 } | 49 } |
50 | 50 |
51 .network-log-grid.data-grid table.data { | 51 .network-log-grid.data-grid table.data { |
52 background-size: 128px 82px; | 52 background: transparent; |
53 background-image: linear-gradient(to bottom, white, white 50%, #eee 50%, #ee
e); | |
54 } | 53 } |
55 | 54 |
56 .network-log-grid.data-grid.small table.data { | 55 .network-log-grid .odd { |
57 background-size: 128px 42px; | 56 background: #eee; |
58 } | 57 } |
59 | 58 |
60 .network-log-grid.data-grid td { | 59 .network-log-grid.data-grid td { |
61 line-height: 17px; | 60 line-height: 17px; |
62 height: 41px; | 61 height: 41px; |
63 border-left: 1px solid rgb(210, 210, 210); | 62 border-left: 1px solid rgb(210, 210, 210); |
64 vertical-align: middle; | 63 vertical-align: middle; |
65 } | 64 } |
66 | 65 |
67 .network-log-grid.data-grid.small td { | 66 .network-log-grid.data-grid.small td { |
(...skipping 23 matching lines...) Expand all Loading... |
91 } | 90 } |
92 | 91 |
93 .network-log-grid.data-grid select { | 92 .network-log-grid.data-grid select { |
94 -webkit-appearance: none; | 93 -webkit-appearance: none; |
95 background-color: transparent; | 94 background-color: transparent; |
96 border: none; | 95 border: none; |
97 width: 100%; | 96 width: 100%; |
98 color: inherit; | 97 color: inherit; |
99 } | 98 } |
100 | 99 |
101 .network-log-grid.data-grid .bottom-filler-td { | |
102 background-color: white; | |
103 } | |
104 | |
105 .network-log-grid.data-grid .name-column { | 100 .network-log-grid.data-grid .name-column { |
106 cursor: pointer; | 101 cursor: pointer; |
107 } | 102 } |
108 | 103 |
109 #network-container:not(.brief-mode) .network-log-grid.data-grid td.name-column:h
over { | 104 #network-container:not(.brief-mode) .network-log-grid.data-grid td.name-column:h
over { |
110 text-decoration: underline; | 105 text-decoration: underline; |
111 } | 106 } |
112 | 107 |
113 .network-log-grid.data-grid.small .network-graph-side { | 108 .network-log-grid.data-grid.small .network-graph-side { |
114 height: 14px; | 109 height: 14px; |
(...skipping 416 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
531 | 526 |
532 #network-container { | 527 #network-container { |
533 overflow-y: auto; | 528 overflow-y: auto; |
534 overflow-x: hidden; | 529 overflow-x: hidden; |
535 } | 530 } |
536 | 531 |
537 /* Brief mode peculiarities. */ | 532 /* Brief mode peculiarities. */ |
538 #network-container.brief-mode .network-timeline-grid { | 533 #network-container.brief-mode .network-timeline-grid { |
539 display: none; | 534 display: none; |
540 } | 535 } |
OLD | NEW |