blob: e6d643785bde64c57925b5193cf25e3e8771ce1a (
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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
|
/*
Copyright (c) 2010 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.
*/
* {
-webkit-box-sizing: border-box;
}
body {
font-family: sans-serif;
}
#filterBox {
background: #efefef;
padding: 5px;
border-bottom: 1px solid gray;
overflow: hidden;
}
#filterBox * {
white-space: nowrap;
font-family: sans-serif;
font-size: 12px;
}
#filterBox input {
width: 100%;
}
#actionBox {
background: #efefef;
white-space: nowrap;
border-top: 1px solid gray;
overflow: hidden;
}
#requestsBox {
overflow-x: hidden;
overflow-y: auto
}
#detailsBox {
overflow: auto;
}
#splitterBox {
background: #bfbfbf;
border-left: 1px inset black;
border-right: 1px solid black;
position:absolute;
width: 8px;
cursor: col-resize;
user-select: none;
}
#requestsListTable {
cursor: pointer;
}
#requestsListTable thead td {
text-align: left;
font-weight: bold;
background: rgb(229, 236, 249);
}
#requestsListTable td {
padding: 3px;
border-left: 1px solid #afafaf;
border-bottom: 1px solid #afafaf;
text-overflow: ellipsis;
font-size: 12px;
white-space: nowrap;
}
#requestsListTableBody .mouseover {
background: rgb(244,244,255);
}
#requestsListTableBody .selected,
#requestsListTableBody .mouseover .selected {
background: #C3D9FF;
}
#requestsListTableBody .source_CONNECT_JOB {
color: blue;
}
#requestsListTableBody .source_INIT_PROXY_RESOLVER {
color: orange;
}
.tabSwitcher {
margin-top: 10px;
margin-left: 10px;
}
.tabSwitcher th {
background: rgb(229,236,249);
cursor: pointer;
background-clip: border-box;
border-top-left-radius: 5px 5px;
border-top-right-radius: 5px 5px;
padding-left: 4px;
padding-top: 4px;
padding-right: 4px;
font-size: 12px;
margin-left: 30px;
}
.tabSwitcher th.selected, .tabSwitcherLine {
background: rgb(195,217,255);
}
.tabSwitcherLine {
height: 10px;
}
#detailsTabArea {
margin-top: 10px;
}
.logSourceEntry {
margin: 5px;
}
.logSourceEntry * p {
font-weight: bold;
font-size: 12px;
}
.logSourceEntry * td {
font-size: 10px;
}
|