|
| 1 | +/** |
| 2 | + * QUnit - A JavaScript Unit Testing Framework |
| 3 | + * |
| 4 | + * http://docs.jquery.com/QUnit |
| 5 | + * |
| 6 | + * Copyright (c) 2011 John Resig, Jörn Zaefferer |
| 7 | + * Dual licensed under the MIT (MIT-LICENSE.txt) |
| 8 | + * or GPL (GPL-LICENSE.txt) licenses. |
| 9 | + */ |
| 10 | + |
1 | 11 | /** Font Family and Sizes */
|
2 | 12 |
|
3 | 13 | #qunit-tests, #qunit-header, #qunit-banner, #qunit-testrunner-toolbar, #qunit-userAgent, #qunit-testresult {
|
4 |
| - font-family: "Helvetica Neue Light", "HelveticaNeue-Light", "Helvetica Neue", Calibri, Helvetica, Arial; |
| 14 | + font-family: "Helvetica Neue Light", "HelveticaNeue-Light", "Helvetica Neue", Calibri, Helvetica, Arial, sans-serif; |
5 | 15 | }
|
6 | 16 |
|
7 | 17 | #qunit-testrunner-toolbar, #qunit-userAgent, #qunit-testresult, #qunit-tests li { font-size: small; }
|
|
11 | 21 | /** Resets */
|
12 | 22 |
|
13 | 23 | #qunit-tests, #qunit-tests ol, #qunit-header, #qunit-banner, #qunit-userAgent, #qunit-testresult {
|
14 |
| - margin: 0 8px; |
| 24 | + margin: 0; |
15 | 25 | padding: 0;
|
16 | 26 | }
|
17 | 27 |
|
| 28 | + |
18 | 29 | /** Header */
|
19 | 30 |
|
20 | 31 | #qunit-header {
|
|
31 | 42 | -moz-border-radius: 15px 15px 0 0;
|
32 | 43 | -webkit-border-top-right-radius: 15px;
|
33 | 44 | -webkit-border-top-left-radius: 15px;
|
34 |
| - |
35 |
| - margin-top: 8px; |
36 | 45 | }
|
37 | 46 |
|
38 | 47 | #qunit-header a {
|
|
50 | 59 | }
|
51 | 60 |
|
52 | 61 | #qunit-testrunner-toolbar {
|
53 |
| - padding: 0em 0 0.5em 2em; |
| 62 | + padding: 0.5em 0 0.5em 2em; |
| 63 | + color: #5E740B; |
| 64 | + background-color: #eee; |
54 | 65 | }
|
55 | 66 |
|
56 | 67 | #qunit-userAgent {
|
|
73 | 84 | list-style-position: inside;
|
74 | 85 | }
|
75 | 86 |
|
| 87 | +#qunit-tests.hidepass li.pass, #qunit-tests.hidepass li.running { |
| 88 | + display: none; |
| 89 | +} |
| 90 | + |
76 | 91 | #qunit-tests li strong {
|
77 | 92 | cursor: pointer;
|
78 | 93 | }
|
79 | 94 |
|
| 95 | +#qunit-tests li a { |
| 96 | + padding: 0.5em; |
| 97 | + color: #c2ccd1; |
| 98 | + text-decoration: none; |
| 99 | +} |
| 100 | +#qunit-tests li a:hover, |
| 101 | +#qunit-tests li a:focus { |
| 102 | + color: #000; |
| 103 | +} |
| 104 | + |
80 | 105 | #qunit-tests ol {
|
81 | 106 | margin-top: 0.5em;
|
82 | 107 | padding: 0.5em;
|
|
161 | 186 | color: #710909;
|
162 | 187 | background-color: #fff;
|
163 | 188 | border-left: 26px solid #EE5757;
|
| 189 | + white-space: pre; |
| 190 | +} |
| 191 | + |
| 192 | +#qunit-tests > li:last-child { |
| 193 | + border-radius: 0 0 15px 15px; |
| 194 | + -moz-border-radius: 0 0 15px 15px; |
| 195 | + -webkit-border-bottom-right-radius: 15px; |
| 196 | + -webkit-border-bottom-left-radius: 15px; |
164 | 197 | }
|
165 | 198 |
|
166 | 199 | #qunit-tests .fail { color: #000000; background-color: #EE5757; }
|
|
170 | 203 | #qunit-tests .fail .test-actual { color: #EE5757; }
|
171 | 204 | #qunit-tests .fail .test-expected { color: green; }
|
172 | 205 |
|
173 |
| -#qunit-banner.qunit-fail, |
174 |
| -#qunit-testrunner-toolbar { background-color: #EE5757; } |
| 206 | +#qunit-banner.qunit-fail { background-color: #EE5757; } |
175 | 207 |
|
176 | 208 |
|
177 |
| -/** Footer */ |
| 209 | +/** Result */ |
178 | 210 |
|
179 | 211 | #qunit-testresult {
|
180 | 212 | padding: 0.5em 0.5em 0.5em 2.5em;
|
181 | 213 |
|
182 | 214 | color: #2b81af;
|
183 | 215 | background-color: #D2E0E6;
|
184 | 216 |
|
185 |
| - border-radius: 0 0 15px 15px; |
186 |
| - -moz-border-radius: 0 0 15px 15px; |
187 |
| - -webkit-border-bottom-right-radius: 15px; |
188 |
| - -webkit-border-bottom-left-radius: 15px; |
| 217 | + border-bottom: 1px solid white; |
189 | 218 | }
|
190 | 219 |
|
191 | 220 | /** Fixture */
|
|
0 commit comments