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
|
/* SM2 troubleshooting CSS */
#sm2-test {
position:relative;
background:#f6f6f6;
border:1px solid #eee;
padding:3px;
}
#sm2-test,
#sm2-test ul.items {
-moz-border-radius:3px;
-khtml-border-radius:3px;
-webkit-border-radius:3px;
}
#sm2-test ul.items {
position:relative;
background:#fff;
list-style-type:none;
margin:0px;
padding:0px;
border:1px solid #ccc;
}
#sm2-test ul.items li {
position:relative;
margin-left:0.5em;
padding-left:0.5em;
margin-right:0.5em;
padding-right:0.5em;
}
#sm2-test ul.items li h3 {
padding-top:0.3em;
margin-top:0px;
border-bottom:1px solid #ccc;
}
#sm2-test ul.items li:last-child h3 {
border-bottom:none;
}
#sm2-test ul.items li div.details {
border-bottom:1px solid #ccc;
}
#sm2-test ul.items li:hover div.details {
border-bottom:1px solid #ccc;
}
#sm2-test ul.items li.open:last-child h3,
#sm2-test ul.items li.fail:last-child h3,
#sm2-test ul.items li:last-child div.details:last-child {
border-bottom:1px solid #fff;
}
#sm2-test ul.items li div.details {
display:none;
}
#sm2-test ul.items li.open div.details,
#sm2-test ul.items li.unknown div.details,
#sm2-test ul.items li.fail div.details {
display:block;
}
#sm2-test ul.items li span.yay,
#sm2-test ul.items li span.boo,
#sm2-test ul.items li span.default,
#sm2-test ul.items li span.unknown {
display:none;
}
#sm2-test ul.items li span.yay,
#sm2-test ul.items li.pass span.msg {
color:green;
}
#sm2-test ul.items li span.boo,
#sm2-test ul.items li.fail span.msg {
color:red;
}
#sm2-test ul.items li span.default,
#sm2-test ul.items li.default span.msg {
color:#ccc;
}
#sm2-test ul.items li span.unknown,
#sm2-test ul.items li.unknown span.msg {
color:#666;
}
#sm2-test ul.items li.default span.msg {
display:none; /* hide messages in the event a reset occurs */
}
#sm2-test ul.items li.pass span.yay,
#sm2-test ul.items li.fail span.boo,
#sm2-test ul.items li.default span.default,
#sm2-test ul.items li.unknown span.unknown {
float:right;
display:inline;
}
#sm2-container.flash_debug {
/* flash movie, when soundManager.debugFlash = true */
position:relative;
width:auto;
height:300px;
width:100%;
background:#f6f6f6;
border:1px solid #ccc;
}
#sm2-container.flash_debug object,
#sm2-container.flash_debug embed {
border:1px solid #fff;
}
|