| OLD | NEW |
| 1 /* | 1 /* |
| 2 Copyright (c) 2011 The Chromium Authors. All rights reserved. | 2 Copyright (c) 2011 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 #events-view-filter-box { | 7 #events-view-filter-box { |
| 8 background: #efefef; | 8 background: #efefef; |
| 9 padding: 5px; | 9 padding: 5px; |
| 10 border-bottom: 1px solid gray; | 10 border-bottom: 1px solid gray; |
| (...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 67 #events-view-source-list-tbody .inactive { | 67 #events-view-source-list-tbody .inactive { |
| 68 background: #F5FFF5; | 68 background: #F5FFF5; |
| 69 } | 69 } |
| 70 | 70 |
| 71 #events-view-source-list-tbody .source_CONNECT_JOB { | 71 #events-view-source-list-tbody .source_CONNECT_JOB { |
| 72 color: blue; | 72 color: blue; |
| 73 } | 73 } |
| 74 | 74 |
| 75 #events-view-source-list-tbody .source_HOST_RESOLVER_IMPL_JOB, | 75 #events-view-source-list-tbody .source_HOST_RESOLVER_IMPL_JOB, |
| 76 #events-view-source-list-tbody .source_HOST_RESOLVER_IMPL_REQUEST, | 76 #events-view-source-list-tbody .source_HOST_RESOLVER_IMPL_REQUEST, |
| 77 #events-view-source-list-tbody .source_HOST_RESOLVER_IMPL_PROC_TASK, |
| 77 #events-view-source-list-tbody .source_ASYNC_HOST_RESOLVER_REQUEST, | 78 #events-view-source-list-tbody .source_ASYNC_HOST_RESOLVER_REQUEST, |
| 78 #events-view-source-list-tbody .source_DNS_TRANSACTION { | 79 #events-view-source-list-tbody .source_DNS_TRANSACTION { |
| 79 color: #206060; | 80 color: #206060; |
| 80 } | 81 } |
| 81 | 82 |
| 82 #events-view-source-list-tbody .source_DISK_CACHE_ENTRY, | 83 #events-view-source-list-tbody .source_DISK_CACHE_ENTRY, |
| 83 #events-view-source-list-tbody .source_MEMORY_CACHE_ENTRY { | 84 #events-view-source-list-tbody .source_MEMORY_CACHE_ENTRY { |
| 84 color: #707070; | 85 color: #707070; |
| 85 } | 86 } |
| 86 | 87 |
| 87 #events-view-source-list-tbody .source_SOCKET { | 88 #events-view-source-list-tbody .source_SOCKET { |
| 88 color: purple; | 89 color: purple; |
| 89 } | 90 } |
| 90 | 91 |
| 91 #events-view-source-list-tbody .source_UDP_SOCKET { | 92 #events-view-source-list-tbody .source_UDP_SOCKET { |
| 92 color: #803030; | 93 color: #803030; |
| 93 } | 94 } |
| 94 | 95 |
| 95 #events-view-source-list-tbody .source_PROXY_SCRIPT_DECIDER { | 96 #events-view-source-list-tbody .source_PROXY_SCRIPT_DECIDER { |
| 96 color: green; | 97 color: green; |
| 97 } | 98 } |
| 98 | 99 |
| 99 #events-view-source-list-tbody .source_NONE { | 100 #events-view-source-list-tbody .source_NONE { |
| 100 color: red; | 101 color: red; |
| 101 } | 102 } |
| OLD | NEW |