OLD | NEW |
(Empty) | |
| 1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 * Use of this source code is governed by a BSD-style license that can be |
| 3 * found in the LICENSE file. |
| 4 */ |
| 5 |
| 6 #events-view-filter-box { |
| 7 background: #efefef; |
| 8 border-bottom: 1px solid #aaa; |
| 9 overflow: hidden; |
| 10 padding: 5px; |
| 11 white-space: nowrap; |
| 12 } |
| 13 |
| 14 #events-view-filter-box input { |
| 15 width: 100%; |
| 16 } |
| 17 |
| 18 #events-view-action-box { |
| 19 background: #efefef; |
| 20 border-top: 1px solid gray; |
| 21 overflow: hidden; |
| 22 white-space: nowrap; |
| 23 } |
| 24 |
| 25 #events-view-source-list { |
| 26 overflow-x: hidden; |
| 27 overflow-y: auto |
| 28 } |
| 29 |
| 30 #events-view-source-list-table { |
| 31 cursor: pointer; |
| 32 } |
| 33 |
| 34 #events-view-source-list-table thead td { |
| 35 background: rgb(229, 236, 249); |
| 36 font-weight: bold; |
| 37 text-align: left; |
| 38 } |
| 39 |
| 40 #events-view-source-list-table td { |
| 41 border-bottom: 1px solid #afafaf; |
| 42 border-left: 1px solid #afafaf; |
| 43 padding: 3px; |
| 44 text-overflow: ellipsis; |
| 45 white-space: nowrap; |
| 46 } |
| 47 |
| 48 #events-view-source-list-tbody .mouseover { |
| 49 background: rgb(244,244,255); |
| 50 } |
| 51 |
| 52 #events-view-source-list-tbody .selected { |
| 53 background: rgb(195, 217, 255); |
| 54 } |
| 55 |
| 56 #events-view-source-list-tbody .error { |
| 57 background: rgb(255, 245, 245); |
| 58 } |
| 59 |
| 60 #events-view-source-list-tbody .inactive { |
| 61 background: rgb(245, 255, 245); |
| 62 } |
| 63 |
| 64 #events-view-source-list-tbody .source-connect-job { |
| 65 color: blue; |
| 66 } |
| 67 |
| 68 #events-view-source-list-tbody .source-host-resolver-impl-job, |
| 69 #events-view-source-list-tbody .source-host-resolver-impl-request { |
| 70 color: rgb(32, 96, 96); |
| 71 } |
| 72 |
| 73 #events-view-source-list-tbody .source-disk-cache-entry, |
| 74 #events-view-source-list-tbody .source-memory-cache-entry { |
| 75 color: #707070; |
| 76 } |
| 77 |
| 78 #events-view-source-list-tbody .source-socket { |
| 79 color: purple; |
| 80 } |
| 81 |
| 82 #events-view-source-list-tbody .source-udp-socket { |
| 83 color: rgb(128, 48, 48); |
| 84 } |
| 85 |
| 86 #events-view-source-list-tbody .source-proxy-script-decider { |
| 87 color: green; |
| 88 } |
| 89 |
| 90 #events-view-source-list-tbody .source-download { |
| 91 color: rgb(112, 112, 0); |
| 92 } |
| 93 |
| 94 #events-view-source-list-tbody .source-filestream { |
| 95 color: rgb(112, 0, 112); |
| 96 } |
| 97 |
| 98 #events-view-source-list-tbody .source-ipv6-probe-job { |
| 99 color: rgb(235, 0, 0); |
| 100 } |
| 101 |
| 102 #events-view-source-list-tbody .source-none { |
| 103 color: rgb(235, 0, 0); |
| 104 } |
| 105 |
OLD | NEW |