forked from habari/tests
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathadmin.css
96 lines (76 loc) · 1.27 KB
/
admin.css
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
#run {
margin-left: 5%;
margin-top: 1px;
}
.methods {
margin-top: 0.5em;
width: 100%;
}
.methods tr {
padding: 2px 4px;
}
.methods td {
vertical-align: top;
line-height: 1.5em;
}
.methods td:first-child {
width: 50px;
}
.methods td:last-child {
width: 80px;
}
.methods th {
font-weight: bold;
border-bottom: #666;
}
.methods th.passfail,
.methods .hasoutput {
text-align: center;
}
.methods .output {
background: #e0e0e0;
}
.methods .method_output {
display: none;
margin: 10px;
background: #F8F8F8;
padding: 5px;
font-family: consolas, monospace;
}
.methods td.passfail {
text-align: center;
font-size: larger;
}
.hasoutput_yes a {
text-decoration: underline;
}
.methods .Pass:nth-child(even) {
background-color: #DFD;
}
.methods .Pass:nth-child(odd) {
background-color: #D6F8D6;
}
.methods .Fail:nth-child(even) {
background-color: #FDD;
}
.methods .Fail:nth-child(odd) {
background-color: #F8D6D6;
}
.methods .Incomplete:nth-child(even) {
background-color: #FFC;
}
.methods .Incomplete:nth-child(odd) {
background-color: #F8F8C5;
}
.methods .messages {
display: block;
padding-left: 4px;
padding-bottom: 2px;
}
.methods .messages em {
font-style: italic !important;
}
.methods .methodname a {
font-weight: bold;
text-decoration: underline;
}