| OLD | NEW |
| 1 /* | 1 /* |
| 2 Copyright (c) 2010 The Chromium Authors. All rights reserved. | 2 Copyright (c) 2010 The Chromium Authors. All rights reserved. |
| 3 Use of this source code is governed by a BSD-style license that can be | 3 Use of this source code is governed by a BSD-style license that can be |
| 4 found in the LICENSE file. | 4 found in the LICENSE file. |
| 5 */ | 5 */ |
| 6 | 6 |
| 7 * { | 7 * { |
| 8 -webkit-box-sizing: border-box; | 8 -webkit-box-sizing: border-box; |
| 9 -moz-box-sizing: border-box; | 9 -moz-box-sizing: border-box; |
| 10 } | 10 } |
| (...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 80 | 80 |
| 81 #requestsListTableBody .selected, | 81 #requestsListTableBody .selected, |
| 82 #requestsListTableBody .mouseover .selected { | 82 #requestsListTableBody .mouseover .selected { |
| 83 background: #C3D9FF; | 83 background: #C3D9FF; |
| 84 } | 84 } |
| 85 | 85 |
| 86 #requestsListTableBody .source_CONNECT_JOB { | 86 #requestsListTableBody .source_CONNECT_JOB { |
| 87 color: blue; | 87 color: blue; |
| 88 } | 88 } |
| 89 | 89 |
| 90 #requestsListTableBody .source_HOST_RESOLVER_IMPL_JOB, |
| 91 #requestsListTableBody .source_HOST_RESOLVER_IMPL_REQUEST { |
| 92 color: #308080; |
| 93 } |
| 94 |
| 90 #requestsListTableBody .source_SOCKET { | 95 #requestsListTableBody .source_SOCKET { |
| 91 color: purple; | 96 color: purple; |
| 92 } | 97 } |
| 93 | 98 |
| 94 #requestsListTableBody .source_INIT_PROXY_RESOLVER { | 99 #requestsListTableBody .source_INIT_PROXY_RESOLVER { |
| 95 color: green; | 100 color: green; |
| 96 } | 101 } |
| 97 | 102 |
| 98 #requestsListTableBody .source_NONE { | 103 #requestsListTableBody .source_NONE { |
| 99 color: red; | 104 color: red; |
| (...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 216 table.styledTable, | 221 table.styledTable, |
| 217 .styledTable th, | 222 .styledTable th, |
| 218 .styledTable td { | 223 .styledTable td { |
| 219 border: 1px solid #777; | 224 border: 1px solid #777; |
| 220 } | 225 } |
| 221 | 226 |
| 222 .styledTable th { | 227 .styledTable th { |
| 223 background: rgb(224,236,255); | 228 background: rgb(224,236,255); |
| 224 } | 229 } |
| 225 | 230 |
| OLD | NEW |