1
|
|
2
|
|
3
|
#simpletest-form-table th.select-all {
|
4
|
width: 1em;
|
5
|
}
|
6
|
th.simpletest_test {
|
7
|
width: 16em;
|
8
|
}
|
9
|
|
10
|
.simpletest-image {
|
11
|
display: inline-block;
|
12
|
cursor: pointer;
|
13
|
width: 1em;
|
14
|
}
|
15
|
.simpletest-group-label label {
|
16
|
display: inline;
|
17
|
font-weight: bold;
|
18
|
}
|
19
|
.simpletest-test-label label {
|
20
|
margin-left: 1em;
|
21
|
}
|
22
|
.simpletest-test-description .description {
|
23
|
margin: 0;
|
24
|
}
|
25
|
#simpletest-form-table tr td {
|
26
|
background-color: white;
|
27
|
color: #494949;
|
28
|
}
|
29
|
#simpletest-form-table tr.simpletest-group td {
|
30
|
background-color: #EDF5FA;
|
31
|
color: #494949;
|
32
|
}
|
33
|
|
34
|
table#simpletest-form-table tr.simpletest-group label {
|
35
|
display: inline;
|
36
|
}
|
37
|
|
38
|
div.message > div.item-list {
|
39
|
font-weight: normal;
|
40
|
}
|
41
|
|
42
|
div.simpletest-pass {
|
43
|
color: #33a333;
|
44
|
}
|
45
|
.simpletest-fail {
|
46
|
color: #981010;
|
47
|
}
|
48
|
|
49
|
tr.simpletest-pass.odd {
|
50
|
background-color: #b6ffb6;
|
51
|
}
|
52
|
tr.simpletest-pass.even {
|
53
|
background-color: #9bff9b;
|
54
|
}
|
55
|
tr.simpletest-fail.odd {
|
56
|
background-color: #ffc9c9;
|
57
|
}
|
58
|
tr.simpletest-fail.even {
|
59
|
background-color: #ffacac;
|
60
|
}
|
61
|
tr.simpletest-exception.odd {
|
62
|
background-color: #f4ea71;
|
63
|
}
|
64
|
tr.simpletest-exception.even {
|
65
|
background-color: #f5e742;
|
66
|
}
|
67
|
tr.simpletest-debug.odd {
|
68
|
background-color: #eee;
|
69
|
}
|
70
|
tr.simpletest-debug.even {
|
71
|
background-color: #fff;
|
72
|
}
|
73
|
|
74
|
a.simpletest-collapse {
|
75
|
height: 0;
|
76
|
width: 0;
|
77
|
top: -99em;
|
78
|
position: absolute;
|
79
|
}
|
80
|
a.simpletest-collapse:focus,
|
81
|
a.simpletest-collapse:hover {
|
82
|
font-size: 80%;
|
83
|
top: 0px;
|
84
|
height: auto;
|
85
|
width: auto;
|
86
|
overflow: visible;
|
87
|
position: relative;
|
88
|
z-index: 1000;
|
89
|
}
|