summaryrefslogtreecommitdiffstats
path: root/chrome/browser/resources/net_internals/events_view.css
blob: 58a327ae431b83b08052b1d9def80a988aebf417 (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
102
103
104
105
106
107
/* Copyright (c) 2012 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;
  border-bottom: 1px solid #aaa;
  font-family: sans-serif;
  font-size: 75%;
  overflow: hidden;
  padding: 5px;
  white-space: nowrap;
}

#events-view-filter-box input {
  width: 100%;
}

#events-view-action-box {
  background: #efefef;
  border-top: 1px solid gray;
  overflow: hidden;
  white-space: nowrap;
}

#events-view-source-list {
  overflow-x: hidden;
  overflow-y: auto
}

#events-view-source-list-table {
  cursor: pointer;
}

#events-view-source-list-table thead td {
  background: rgb(229, 236, 249);
  font-weight: bold;
  text-align: left;
}

#events-view-source-list-table td {
  border-bottom: 1px solid #afafaf;
  border-left: 1px solid #afafaf;
  font-size: 75%;
  padding: 3px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

#events-view-source-list-tbody .mouseover {
  background: rgb(244,244,255);
}

#events-view-source-list-tbody .selected {
  background: rgb(195, 217, 255);
}

#events-view-source-list-tbody .error {
  background: rgb(255, 245, 245);
}

#events-view-source-list-tbody .inactive {
  background: rgb(245, 255, 245);
}

#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 {
  color: rgb(32, 96, 96);
}

#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: rgb(128, 48, 48);
}

#events-view-source-list-tbody .source-proxy-script-decider {
  color: green;
}

#events-view-source-list-tbody .source-download {
  color: rgb(112, 112, 0);
}

#events-view-source-list-tbody .source-filestream {
  color: rgb(112, 0, 112);
}

#events-view-source-list-tbody .source-ipv6-probe-job {
  color: rgb(235, 0, 0);
}

#events-view-source-list-tbody .source-none {
  color: rgb(235, 0, 0);
}