blob: a5d06ce7713ccc14f6b114b1ff5417b4fb75ce74 (
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
|
.qunit-composite-suite {
position: fixed;
bottom: 0;
left: 0;
margin: 0;
padding: 0;
border-width: 1px 0 0;
height: 45%;
width: 100%;
background: #fff;
}
#qunit-testsuites {
margin: 0;
padding: 0.5em 1.0em;
font-family: "Helvetica Neue Light","HelveticaNeue-Light","Helvetica Neue",Calibri,Helvetica,Arial,sans-serif;
font-size: small;
background-color: #d2e0e6;
border-bottom: 1px solid #fff;
}
#qunit-testsuites a {
color: #00c;
text-decoration: none;
}
#qunit-testsuites a:hover {
text-decoration: underline;
}
#qunit-testsuites > li {
display: inline-block;
}
#qunit-testsuites > li:first-child::before {
content: "Suites: ";
}
#qunit-testsuites > li + li::before {
content: "|\a0";
}
#qunit-testsuites > li::after {
content: "\a0";
}
|