OLD | NEW |
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 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
80 display: none; | 80 display: none; |
81 position: absolute; | 81 position: absolute; |
82 top: 0; | 82 top: 0; |
83 right: 0; | 83 right: 0; |
84 left: 0; | 84 left: 0; |
85 bottom: 0; | 85 bottom: 0; |
86 margin: 6px; | 86 margin: 6px; |
87 color: rgb(30%, 30%, 30%); | 87 color: rgb(30%, 30%, 30%); |
88 } | 88 } |
89 | 89 |
90 .resource-timing-view table { | |
91 border-spacing: 21px 0; | |
92 } | |
93 | |
94 /* Network timing is shared between popover and network item view pane */ | 90 /* Network timing is shared between popover and network item view pane */ |
95 | 91 |
| 92 .network-timing-table { |
| 93 width: 328px; |
| 94 border-spacing: 0; |
| 95 padding-left: 4px; |
| 96 padding-right: 4px; |
| 97 } |
| 98 |
| 99 .network-timing-table col.labels { |
| 100 width: 120px; |
| 101 } |
| 102 |
96 .network-timing-table td { | 103 .network-timing-table td { |
97 padding: 2px 0; | 104 padding: 2px 0; |
98 } | 105 } |
99 | 106 |
100 .network-timing-table td.caution { | 107 .network-timing-table td.caution { |
101 font-weight: bold; | 108 font-weight: bold; |
102 color: rgb(255, 128, 0); | 109 color: rgb(255, 128, 0); |
103 padding: 2px 0; | 110 padding: 2px 0; |
104 } | 111 } |
105 | 112 |
106 .network-timing-row { | 113 .network-timing-row { |
107 position: relative; | 114 position: relative; |
108 height: 15px; | 115 height: 15px; |
109 } | 116 } |
110 | 117 |
111 .network-timing-bar { | 118 .network-timing-bar { |
112 position: absolute; | 119 position: absolute; |
113 min-width: 1px; | 120 min-width: 1px; |
114 top: 0; | 121 top: 0; |
115 bottom: 0; | 122 bottom: 0; |
116 } | 123 } |
117 | 124 |
118 .network-timing-bar-title { | 125 .network-timing-bar-title { |
119 position: absolute; | 126 position: absolute; |
120 color: #222; | 127 color: #222; |
121 padding: 0 3px; | 128 padding: 0 3px; |
122 line-height: 15px; | 129 line-height: 15px; |
123 } | 130 } |
124 | 131 |
| 132 .network-timing-bar.total { |
| 133 border: 1px solid rgba(0, 0, 0, 0.1); |
| 134 } |
| 135 |
125 .network-timing-bar.blocking, | 136 .network-timing-bar.blocking, |
126 .network-timing-bar.proxy { | 137 .network-timing-bar.proxy { |
127 background-color: rgb(205, 205, 205); | 138 background-color: rgb(205, 205, 205); |
128 } | 139 } |
129 | 140 |
130 .network-timing-bar.dns { | 141 .network-timing-bar.dns { |
131 background-color: rgb(31, 124, 131); | 142 background-color: rgb(31, 124, 131); |
132 } | 143 } |
133 | 144 |
134 .network-timing-bar.connecting, | 145 .network-timing-bar.connecting, |
(...skipping 11 matching lines...) Expand all Loading... |
146 } | 157 } |
147 | 158 |
148 .network-timing-bar.receiving { | 159 .network-timing-bar.receiving { |
149 background-color: rgb(65, 137, 215); | 160 background-color: rgb(65, 137, 215); |
150 } | 161 } |
151 | 162 |
152 .resource-timing-view.visible { | 163 .resource-timing-view.visible { |
153 display: block; | 164 display: block; |
154 } | 165 } |
155 | 166 |
| 167 .resource-timing-view .network-timing-table { |
| 168 width: 100%; |
| 169 } |
| 170 |
156 .panel.network .split-view { | 171 .panel.network .split-view { |
157 flex: auto; | 172 flex: auto; |
158 position: relative; | 173 position: relative; |
159 } | 174 } |
160 | 175 |
161 .network-filters-header { | 176 .network-filters-header { |
162 flex: 0 0 23px; | 177 flex: 0 0 23px; |
163 padding-right: 4px; | 178 padding-right: 4px; |
164 } | 179 } |
165 | 180 |
166 .request-view.json { | 181 .request-view.json { |
167 padding: 5px; | 182 padding: 5px; |
168 } | 183 } |
169 | 184 |
170 .request-view.html iframe { | 185 .request-view.html iframe { |
171 width: 100%; | 186 width: 100%; |
172 height: 100%; | 187 height: 100%; |
173 position: absolute; | 188 position: absolute; |
174 } | 189 } |
OLD | NEW |