blob: 8b6ea32d3545a2ce6c87f59dbb9383a3689e0b09 (
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
|
label {
cursor: pointer;
}
div.d {
padding-left: 2em;
border-left: 1px solid #ccc;
cursor: pointer;
}
div.d.hide {
height: 5px;
margin-top: 1px;
background-color: #ccc;
}
div.d.hide * {
display: none;
}
div.f.hide {
height: 5px;
margin-top: 1px;
background-color: #a1b7cc;
cursor: pointer;
}
div.f {
cursor: auto;
display: flex;
flex-wrap: nowrap;
width: 100%;
}
div.f.hide * {
display: none;
}
div.f.mark {
background-color: #ffeced;
}
div.f div {
padding: 5px 0;
}
div.f div.func {
flex-grow: 1;
}
div.f div.data {
flex-grow: 0;
width: 600px;
min-width: 600px;
max-width: 600px;
}
span {
display: inline-block;
line-height: 1.1em;
vertical-align: bottom;
}
span.short {
max-height: 1.1em;
overflow: hidden;
word-break: break-all;
}
span.name {
font-weight: bold;
cursor: pointer;
}
span.params {
color: #468b5e;
cursor: pointer;
}
span.return {
color: #8a2200;
cursor: pointer;
}
span.file,
span.time,
span.memorydiff,
span.timediff {
overflow: hidden;
width: 150px;
text-align: right;
white-space: nowrap;
}
span.time {
cursor: pointer;
}
div.header {
width: 100%;
font-weight: bold;
background-color: antiquewhite;
}
form.load {
width: 50%;
float: left;
}
select {
width: 80%;
}
ul.help {
margin: 0;
width: 45%;
float: left;
}
form.options {
clear:both;
}
|