-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathdebug.css
More file actions
74 lines (63 loc) · 1.21 KB
/
debug.css
File metadata and controls
74 lines (63 loc) · 1.21 KB
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
/* | DEBUG ELEMENTS
+------------------------------------------- */
table.debug {
background: #eee;
border: solid 1px #666;
border-right: solid 2px #666;
}
table.debug#arrayDebug {
position: absolute;
bottom: 10px;
right: 10px;
width: 450px;
}
table.debug#stringDebug {
position: absolute;
bottom: 10px;
left: 10px;
width: 450px;
}
table.debug caption {
background-color: #333;
color: #fff;
font-weight: bold;
margin: 0;
padding: 2px 5px;
text-align: right;
}
table.debug caption span {
float: left;
}
table.debug td.status,
table.debug td.label {
border-bottom: solid 1px #666;
}
table.debug td.label {
background: #999;
font-weight: bold;
line-height: 11px;
margin: 0px;
padding: 4px 5px;
text-align: right;
width: 75px;
}
table.debug td.label span {
display: block;
font-weight: normal;
font-style: italic;
}
table.debug td.status table.variable td {
line-height: 100%;
text-align: left;
}
table.debug td.status table.variable thead td {
font-weight: bold;
}
table.debug td.status table.variable td.variable {
vertical-align: top;
width: 100px;
}
table.debug td.status table.variable td.value span.indent {
display: block;
padding-left: 10px;
}