| OLD | NEW |
| 1 /** | 1 /** |
| 2 * Copyright (c) 2012 The Chromium Authors. All rights reserved. | 2 * Copyright (c) 2012 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 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 66 | 66 |
| 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, | |
| 78 #events-view-source-list-tbody .source_ASYNC_HOST_RESOLVER_REQUEST, | |
| 79 #events-view-source-list-tbody .source_DNS_TRANSACTION { | |
| 80 color: #206060; | 77 color: #206060; |
| 81 } | 78 } |
| 82 | 79 |
| 83 #events-view-source-list-tbody .source_DISK_CACHE_ENTRY, | 80 #events-view-source-list-tbody .source_DISK_CACHE_ENTRY, |
| 84 #events-view-source-list-tbody .source_MEMORY_CACHE_ENTRY { | 81 #events-view-source-list-tbody .source_MEMORY_CACHE_ENTRY { |
| 85 color: #707070; | 82 color: #707070; |
| 86 } | 83 } |
| 87 | 84 |
| 88 #events-view-source-list-tbody .source_SOCKET { | 85 #events-view-source-list-tbody .source_SOCKET { |
| 89 color: purple; | 86 color: purple; |
| (...skipping 11 matching lines...) Expand all Loading... |
| 101 color: #707000; | 98 color: #707000; |
| 102 } | 99 } |
| 103 | 100 |
| 104 #events-view-source-list-tbody .source_FILESTREAM { | 101 #events-view-source-list-tbody .source_FILESTREAM { |
| 105 color: #700070; | 102 color: #700070; |
| 106 } | 103 } |
| 107 | 104 |
| 108 #events-view-source-list-tbody .source_NONE { | 105 #events-view-source-list-tbody .source_NONE { |
| 109 color: red; | 106 color: red; |
| 110 } | 107 } |
| OLD | NEW |