blob: 914c72b3ff6b08509b5dac609c13d825356e27da (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
|
/*
Copyright (c) 2011 The Chromium Authors. All rights reserved.
Use of this source code is governed by a BSD-style license that can be
found in the LICENSE file.
*/
#events-view-filter-box {
background: #efefef;
padding: 5px;
border-bottom: 1px solid gray;
overflow: hidden;
}
#events-view-filter-box * {
white-space: nowrap;
font-family: sans-serif;
font-size: 12px;
}
#events-view-filter-box input {
width: 100%;
}
#events-view-action-box {
background: #efefef;
white-space: nowrap;
border-top: 1px solid gray;
overflow: hidden;
}
#events-view-source-list {
overflow-x: hidden;
overflow-y: auto
}
#events-view-source-list-table {
cursor: pointer;
}
#events-view-source-list-table thead td {
text-align: left;
font-weight: bold;
background: rgb(229, 236, 249);
}
#events-view-source-list-table td {
padding: 3px;
border-left: 1px solid #afafaf;
border-bottom: 1px solid #afafaf;
text-overflow: ellipsis;
font-size: 12px;
white-space: nowrap;
}
#events-view-source-list-tbody .mouseover {
background: rgb(244,244,255);
}
#events-view-source-list-tbody .selected {
background: #C3D9FF;
}
#events-view-source-list-tbody .error {
background: #FFF5F5;
}
#events-view-source-list-tbody .inactive {
background: #F5FFF5;
}
#events-view-source-list-tbody .source_CONNECT_JOB {
color: blue;
}
#events-view-source-list-tbody .source_HOST_RESOLVER_IMPL_JOB,
#events-view-source-list-tbody .source_HOST_RESOLVER_IMPL_REQUEST,
#events-view-source-list-tbody .source_ASYNC_HOST_RESOLVER_REQUEST,
#events-view-source-list-tbody .source_DNS_TRANSACTION {
color: #206060;
}
#events-view-source-list-tbody .source_DISK_CACHE_ENTRY,
#events-view-source-list-tbody .source_MEMORY_CACHE_ENTRY {
color: #707070;
}
#events-view-source-list-tbody .source_SOCKET {
color: purple;
}
#events-view-source-list-tbody .source_UDP_SOCKET {
color: #803030;
}
#events-view-source-list-tbody .source_PROXY_SCRIPT_DECIDER {
color: green;
}
#events-view-source-list-tbody .source_NONE {
color: red;
}
|