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 font-family: sans-serif; 10 font-size: 75%; 11 overflow: hidden; 12 padding: 5px; 13 white-space: nowrap; 14 } 15 16 #events-view-filter-box input { 17 width: 100%; 18 } 19 20 #events-view-action-box { 21 background: #efefef; 22 border-top: 1px solid gray; 23 overflow: hidden; 24 white-space: nowrap; 25 } 26 27 #events-view-source-list { 28 overflow-x: hidden; 29 overflow-y: auto 30 } 31 32 #events-view-source-list-table { 33 cursor: pointer; 34 } 35 36 #events-view-source-list-table thead td { 37 background: rgb(229, 236, 249); 38 font-weight: bold; 39 text-align: left; 40 } 41 42 #events-view-source-list-table td { 43 border-bottom: 1px solid #afafaf; 44 border-left: 1px solid #afafaf; 45 font-size: 75%; 46 padding: 3px; 47 text-overflow: ellipsis; 48 white-space: nowrap; 49 } 50 51 #events-view-source-list-tbody .mouseover { 52 background: rgb(244,244,255); 53 } 54 55 #events-view-source-list-tbody .selected { 56 background: rgb(195, 217, 255); 57 } 58 59 #events-view-source-list-tbody .error { 60 background: rgb(255, 245, 245); 61 } 62 63 #events-view-source-list-tbody .inactive { 64 background: rgb(245, 255, 245); 65 } 66 67 #events-view-source-list-tbody .source-connect-job { 68 color: blue; 69 } 70 71 #events-view-source-list-tbody .source-host-resolver-impl-job, 72 #events-view-source-list-tbody .source-host-resolver-impl-request { 73 color: rgb(32, 96, 96); 74 } 75 76 #events-view-source-list-tbody .source-disk-cache-entry, 77 #events-view-source-list-tbody .source-memory-cache-entry { 78 color: #707070; 79 } 80 81 #events-view-source-list-tbody .source-socket { 82 color: purple; 83 } 84 85 #events-view-source-list-tbody .source-udp-socket { 86 color: rgb(128, 48, 48); 87 } 88 89 #events-view-source-list-tbody .source-proxy-script-decider { 90 color: green; 91 } 92 93 #events-view-source-list-tbody .source-download { 94 color: rgb(112, 112, 0); 95 } 96 97 #events-view-source-list-tbody .source-filestream { 98 color: rgb(112, 0, 112); 99 } 100 101 #events-view-source-list-tbody .source-ipv6-probe-job { 102 color: rgb(235, 0, 0); 103 } 104 105 #events-view-source-list-tbody .source-none { 106 color: rgb(235, 0, 0); 107 } 108