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 114 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
125 .network-timing-bar.blocking, | 125 .network-timing-bar.blocking, |
126 .network-timing-bar.proxy { | 126 .network-timing-bar.proxy { |
127 background-color: rgb(205, 205, 205); | 127 background-color: rgb(205, 205, 205); |
128 } | 128 } |
129 | 129 |
130 .network-timing-bar.dns { | 130 .network-timing-bar.dns { |
131 background-color: rgb(31, 124, 131); | 131 background-color: rgb(31, 124, 131); |
132 } | 132 } |
133 | 133 |
134 .network-timing-bar.connecting, | 134 .network-timing-bar.connecting, |
135 .network-timing-bar.ssl { | 135 .network-timing-bar.ssl, |
| 136 .network-timing-bar.serviceworker { |
136 background-color: rgb(229, 130, 38); | 137 background-color: rgb(229, 130, 38); |
137 } | 138 } |
138 | 139 |
139 .network-timing-bar.sending { | 140 .network-timing-bar.sending { |
140 background-color: rgb(95, 221, 95); | 141 background-color: rgb(95, 221, 95); |
141 } | 142 } |
142 | 143 |
143 .network-timing-bar.waiting { | 144 .network-timing-bar.waiting { |
144 background-color: rgb(95, 221, 95); | 145 background-color: rgb(95, 221, 95); |
145 } | 146 } |
146 | 147 |
147 .network-timing-bar.receiving { | 148 .network-timing-bar.receiving { |
148 background-color: rgb(65, 137, 215); | 149 background-color: rgb(65, 137, 215); |
149 } | 150 } |
150 | 151 |
151 .resource-timing-view.visible { | 152 .resource-timing-view.visible { |
152 display: block; | 153 display: block; |
153 } | 154 } |
154 | 155 |
155 .panel.network .split-view { | 156 .panel.network .split-view { |
156 flex: auto; | 157 flex: auto; |
157 position: relative; | 158 position: relative; |
158 } | 159 } |
159 | 160 |
160 .network-filters-header { | 161 .network-filters-header { |
161 flex: 0 0 23px; | 162 flex: 0 0 23px; |
162 padding-right: 4px; | 163 padding-right: 4px; |
163 } | 164 } |
OLD | NEW |