| 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 box-sizing: border-box; | 8 box-sizing: border-box; |
| 9 -moz-box-sizing: border-box; | 9 -moz-box-sizing: border-box; |
| 10 } | 10 } |
| (...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 85 | 85 |
| 86 #eventsListTableBody .source_CONNECT_JOB { | 86 #eventsListTableBody .source_CONNECT_JOB { |
| 87 color: blue; | 87 color: blue; |
| 88 } | 88 } |
| 89 | 89 |
| 90 #eventsListTableBody .source_HOST_RESOLVER_IMPL_JOB, | 90 #eventsListTableBody .source_HOST_RESOLVER_IMPL_JOB, |
| 91 #eventsListTableBody .source_HOST_RESOLVER_IMPL_REQUEST { | 91 #eventsListTableBody .source_HOST_RESOLVER_IMPL_REQUEST { |
| 92 color: #308080; | 92 color: #308080; |
| 93 } | 93 } |
| 94 | 94 |
| 95 #eventsListTableBody .source_HTTP_CACHE_ACTIVE_ENTRY, |
| 96 #eventsListTableBody .source_DISK_CACHE_ENTRY { |
| 97 color: gray; |
| 98 } |
| 99 |
| 95 #eventsListTableBody .source_SOCKET { | 100 #eventsListTableBody .source_SOCKET { |
| 96 color: purple; | 101 color: purple; |
| 97 } | 102 } |
| 98 | 103 |
| 99 #eventsListTableBody .source_INIT_PROXY_RESOLVER { | 104 #eventsListTableBody .source_INIT_PROXY_RESOLVER { |
| 100 color: green; | 105 color: green; |
| 101 } | 106 } |
| 102 | 107 |
| 103 #eventsListTableBody .source_NONE { | 108 #eventsListTableBody .source_NONE { |
| 104 color: red; | 109 color: red; |
| (...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 255 font-size: 100%; | 260 font-size: 100%; |
| 256 font-weight: bold; | 261 font-weight: bold; |
| 257 } | 262 } |
| 258 | 263 |
| 259 /** | 264 /** |
| 260 * Styling for text indicating a potential problem or error state. | 265 * Styling for text indicating a potential problem or error state. |
| 261 */ | 266 */ |
| 262 .warningText { | 267 .warningText { |
| 263 color: red; | 268 color: red; |
| 264 } | 269 } |
| OLD | NEW |