| OLD | NEW |
| (Empty) | |
| 1 /*! |
| 2 * Styles taken from qunit.css |
| 3 */ |
| 4 |
| 5 h1#nodeunit-header, h1.nodeunit-header { |
| 6 padding: 15px; |
| 7 font-size: large; |
| 8 background-color: #06b; |
| 9 color: white; |
| 10 font-family: 'trebuchet ms', verdana, arial; |
| 11 margin: 0; |
| 12 } |
| 13 |
| 14 h1#nodeunit-header a { |
| 15 color: white; |
| 16 } |
| 17 |
| 18 h2#nodeunit-banner { |
| 19 height: 2em; |
| 20 border-bottom: 1px solid white; |
| 21 background-color: #eee; |
| 22 margin: 0; |
| 23 font-family: 'trebuchet ms', verdana, arial; |
| 24 } |
| 25 h2#nodeunit-banner.pass { |
| 26 background-color: green; |
| 27 } |
| 28 h2#nodeunit-banner.fail { |
| 29 background-color: red; |
| 30 } |
| 31 |
| 32 h2#nodeunit-userAgent, h2.nodeunit-userAgent { |
| 33 padding: 10px; |
| 34 background-color: #eee; |
| 35 color: black; |
| 36 margin: 0; |
| 37 font-size: small; |
| 38 font-weight: normal; |
| 39 font-family: 'trebuchet ms', verdana, arial; |
| 40 font-size: 10pt; |
| 41 } |
| 42 |
| 43 div#nodeunit-testrunner-toolbar { |
| 44 background: #eee; |
| 45 border-top: 1px solid black; |
| 46 padding: 10px; |
| 47 font-family: 'trebuchet ms', verdana, arial; |
| 48 margin: 0; |
| 49 font-size: 10pt; |
| 50 } |
| 51 |
| 52 ol#nodeunit-tests { |
| 53 font-family: 'trebuchet ms', verdana, arial; |
| 54 font-size: 10pt; |
| 55 } |
| 56 ol#nodeunit-tests li strong { |
| 57 cursor:pointer; |
| 58 } |
| 59 ol#nodeunit-tests .pass { |
| 60 color: green; |
| 61 } |
| 62 ol#nodeunit-tests .fail { |
| 63 color: red; |
| 64 } |
| 65 |
| 66 p#nodeunit-testresult { |
| 67 margin-left: 1em; |
| 68 font-size: 10pt; |
| 69 font-family: 'trebuchet ms', verdana, arial; |
| 70 } |
| OLD | NEW |